MCPcopy
hub / github.com/Kong/insomnia / isObjectLike

Function isObjectLike

packages/insomnia/bin/yarn-standalone.js:19404–19406  ·  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

19402 * // => false
19403 */
19404 function isObjectLike(value) {
19405 return value != null && typeof value == 'object';
19406 }
19407
19408 /**
19409 * 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
yarn-standalone.jsFile · 0.85
isArrayLikeObjectFunction · 0.85
isBooleanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected