Files
setup-haskell/node_modules/isarray/index.js
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -07:00

6 lines
132 B
JavaScript

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