MCPcopy Index your code
hub / github.com/deployd/deployd / isObjectLike

Function isObjectLike

test-app/public/sinon.js:22398–22400  ·  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 {

(value)

Source from the content-addressed store, hash-verified

22396 * // => false
22397 */
22398 function isObjectLike(value) {
22399 return value != null && typeof value == 'object';
22400 }
22401
22402 /**
22403 * 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
sinon.jsFile · 0.85
isArrayLikeObjectFunction · 0.85
isBooleanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected