All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._castArrayLikeObject.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
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;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy