Files
powerpoint-toolbox/node_modules/isarray/index.js
T
2025-03-07 19:22:02 +01:00

6 lines
132 B
JavaScript

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