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

Function isArray

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

Source from the content-addressed store, hash-verified

17 return type === 'function' || (!!value && type === 'object');
18 }
19 function isArray(value) {
20 if (Array.isArray) {
21 return Array.isArray(value);
22 }
23 return Object.prototype.toString.call(value) === '[object Array]';
24 }
25 function isFunction(value) {
26 return typeof value === 'function';
27 }

Callers 15

SimpleOptionPlayerFunction · 0.85
useFunction · 0.85
_updateCommonStlMethod · 0.85
getSectorCornerRadiusFunction · 0.85
createSeriesDataSimplyFunction · 0.85
calculateBaseFunction · 0.85
getRangeVisualFunction · 0.85
constructorMethod · 0.85
installFunction · 0.85
dataTransformFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…