form-cheatsheet/js/polyfills/EcmaScript/Array.isArray.js

2 lines
128 B
JavaScript
Raw Normal View History

2016-10-10 12:02:31 -04:00
Array.isArray=function(a){return"[object Array]"===Object.prototype.toString.call(a)};
//# sourceMappingURL=Array.isArray.js.map