Skip to main content
Module

x/lodash/npm-package/_castArrayLikeObject.js

A modern JavaScript utility library delivering modularity, performance, & extras.
Extremely Popular
Latest
File
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;