Files
XP-System/node_modules/busboy/node_modules/isarray/index.js
T
2020-12-04 09:57:57 -08:00

4 lines
120 B
JavaScript

module.exports = Array.isArray || function (arr) {
return Object.prototype.toString.call(arr) == '[object Array]';
};