rittenhop-dev/versions/5.94.2/node_modules/lodash-es/_castArrayLikeObject.js

15 lines
379 B
JavaScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
import isArrayLikeObject from './isArrayLikeObject.js';
/**
* 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 : [];
}
export default castArrayLikeObject;