MCPcopy
hub / github.com/lodash/lodash / isObject

Function isObject

lodash.js:11842–11845  ·  view source on GitHub ↗

* Checks if `value` is the * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 * @

(value)

Source from the content-addressed store, hash-verified

11840 * // => false
11841 */
11842 function isObject(value) {
11843 var type = typeof value;
11844 return value != null && (type == 'object' || type == 'function');
11845 }
11846
11847 /**
11848 * Checks if `value` is object-like. A value is object-like if it's not `null`

Callers 15

lodash.jsFile · 0.85
baseCloneFunction · 0.85
baseIsNativeFunction · 0.85
baseKeysInFunction · 0.85
baseMergeFunction · 0.85
baseMergeDeepFunction · 0.85
baseSetFunction · 0.85
createCtorFunction · 0.85
customDefaultsMergeFunction · 0.85
isIterateeCallFunction · 0.85
isStrictComparableFunction · 0.85
debounceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected