MCPcopy
hub / github.com/lodash/lodash / isObjectLike

Function isObjectLike

lodash.js:11871–11873  ·  view source on GitHub ↗

* Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `valu

(value)

Source from the content-addressed store, hash-verified

11869 * // => false
11870 */
11871 function isObjectLike(value) {
11872 return value != null && typeof value == 'object';
11873 }
11874
11875 /**
11876 * Checks if `value` is classified as a `Map` object.

Callers 15

lodashFunction · 0.85
baseIsArgumentsFunction · 0.85
baseIsArrayBufferFunction · 0.85
baseIsDateFunction · 0.85
baseIsEqualFunction · 0.85
baseIsMapFunction · 0.85
baseIsRegExpFunction · 0.85
baseIsSetFunction · 0.85
baseIsTypedArrayFunction · 0.85
lodash.jsFile · 0.85
isArrayLikeObjectFunction · 0.85
isBooleanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected