* 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.
(value)
| 15061 | * @returns {Array|Object} Returns the cast array-like object. |
| 15062 | */ |
| 15063 | function castArrayLikeObject(value) { |
| 15064 | return isArrayLikeObject(value) ? value : []; |
| 15065 | } |
| 15066 | |
| 15067 | /** |
| 15068 | * Casts `value` to `identity` if it's not a function. |
nothing calls this directly
no test coverage detected