Files
aresv2/public/assets/lodash-es/_castArrayLikeObject.js
Beyhan Oğur 4362c3b83f first commit
2026-04-26 21:33:39 +03:00

15 lines
379 B
JavaScript

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;