MCPcopy
hub / github.com/NUKnightLab/TimelineJS3 / isObject

Function isObject

src/js/net/Net.js:81–81  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

79 function isDocument(obj) { return obj != null && obj.nodeType == obj.DOCUMENT_NODE }
80
81 function isObject(obj) { return type(obj) == "object" }
82
83 function isPlainObject(obj) {
84 return isObject(obj) && !isWindow(obj) && Object.getPrototypeOf(obj) == Object.prototype

Callers 2

isPlainObjectFunction · 0.85
Net.jsFile · 0.85

Calls 1

typeFunction · 0.85

Tested by

no test coverage detected