Add npm-package

This commit is contained in:
Mathias Bynens
2020-07-08 19:10:23 +02:00
parent 1b6c282299
commit 2e1c0f22f4
1046 changed files with 40050 additions and 0 deletions

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;