MCPcopy
hub / github.com/tdewolff/minify / isObject

Function isObject

_benchmarks/sample_echarts.js:489–492  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

487 return typeof value === 'number';
488 }
489 function isObject(value) {
490 var type = typeof value;
491 return type === 'function' || (!!value && type === 'object');
492 }
493 function isBuiltInObject(value) {
494 return !!BUILTIN_OBJECT[objToString.call(value)];
495 }

Callers 15

mergeFunction · 0.70
sample_echarts.jsFile · 0.70
animateToShallowFunction · 0.70
getDataItemValueFunction · 0.70
isDataItemOptionFunction · 0.70
mappingToExistsFunction · 0.70
makeIdAndNameFunction · 0.70
blurSeriesFunction · 0.70
animateOrSetPropsFunction · 0.70
convertToColorStringFunction · 0.70
fetchLayoutModeFunction · 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…