MCPcopy
hub / github.com/apache/echarts / isObject

Function isObject

test/lib/ecSimpleOptionPlayer.js:15–18  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

13 return own.hasOwnProperty(prop);
14 }
15 function isObject(value) {
16 var type = typeof value;
17 return type === 'function' || (!!value && type === 'object');
18 }
19 function isArray(value) {
20 if (Array.isArray) {
21 return Array.isArray(value);

Callers 1

SimpleOptionPlayerFunction · 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…