MCPcopy Index your code
hub / github.com/IanLunn/Sequence / isArray

Function isArray

src/sequence.js:326–333  ·  view source on GitHub ↗

* Is an object an array? * * @param {Object} object - The object we want to test * @api private

(object)

Source from the content-addressed store, hash-verified

324 * @api private
325 */
326 function isArray(object) {
327
328 if (Object.prototype.toString.call(object) === '[object Array]') {
329 return true;
330 }else {
331 return false;
332 }
333 }
334
335 /**
336 * Extend object a with the properties of object b.

Callers 3

addClassFunction · 0.70
removeClassFunction · 0.70
defineSequenceFunction · 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…