升级工程到Cocos Creator 3.5

This commit is contained in:
dgflash
2022-04-25 14:51:29 +08:00
parent 58de625a87
commit 7861fd34dd
1634 changed files with 310487 additions and 84 deletions

14
node_modules/lodash/_castArrayLikeObject.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
var isArrayLikeObject = require('./isArrayLikeObject');
/**
* Casts `value` to an empty array if it's not an array like object.
*
* @private
* @param {*} value The value to inspect.
* @returns {Array|Object} Returns the cast array-like object.
*/
function castArrayLikeObject(value) {
return isArrayLikeObject(value) ? value : [];
}
module.exports = castArrayLikeObject;