blob: 5f5ad45d46dda97cc2ae37932e0dacf25d06352d [file] [log] [blame]
Paul Lewis40e28672020-11-27 09:51:37 +00001module.exports = Array.isArray || function (arr) {
2 return Object.prototype.toString.call(arr) == '[object Array]';
3};