* 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)
| 4523 | * @returns {Array|Object} Returns the cast array-like object. |
| 4524 | */ |
| 4525 | function castArrayLikeObject(value) { |
| 4526 | return isArrayLikeObject(value) ? value : []; |
| 4527 | } |
| 4528 | |
| 4529 | /** |
| 4530 | * Casts `value` to `identity` if it's not a function. |
nothing calls this directly
no test coverage detected