* Checks if `value` is object-like. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
(value)
| 2028 | * @returns {boolean} Returns `true` if `value` is object-like, else `false`. |
| 2029 | */ |
| 2030 | function isObjectLike(value) { |
| 2031 | return !!value && typeof value == 'object'; |
| 2032 | } |
| 2033 | |
| 2034 | /** |
| 2035 | * Used by `trimmedLeftIndex` and `trimmedRightIndex` to determine if a |
no outgoing calls
no test coverage detected