MCPcopy Index your code
hub / github.com/stemkoski/stemkoski.github.com / isArray

Function isArray

MathBox/mathbox-bundle.js:48619–48623  ·  view source on GitHub ↗
(subject)

Source from the content-addressed store, hash-verified

48617}
48618
48619function isArray (subject) {
48620 return (Array.isArray || function (subject) {
48621 return Object.prototype.toString.call(subject) === '[object Array]'
48622 })(subject)
48623}
48624
48625function isArrayish (subject) {
48626 return isArray(subject) || Buffer.isBuffer(subject) ||

Callers 14

lodashFunction · 0.70
baseCloneFunction · 0.70
baseFlattenFunction · 0.70
baseMergeFunction · 0.70
transformFunction · 0.70
containsFunction · 0.70
maxFunction · 0.70
minFunction · 0.70
sortByFunction · 0.70
intersectionFunction · 0.70
xorFunction · 0.70
zipObjectFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected