MCPcopy Index your code
hub / github.com/jashkenas/underscore / isObject

Function isObject

underscore.js:88–91  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

86
87 // Is a given variable an object?
88 function isObject(obj) {
89 var type = typeof obj;
90 return type === 'function' || (type === 'object' && !!obj);
91 }
92
93 // Is a given value equal to null?
94 function isNull(obj) {

Callers 6

keysFunction · 0.70
allKeysFunction · 0.70
baseCreateFunction · 0.70
cloneFunction · 0.70
baseIterateeFunction · 0.70
executeBoundFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…