Files
setup-ruby/node_modules/isarray/index.js
Stephen Franceschelli f26956e368 Fix.
2019-07-15 11:40:40 -04:00

6 lines
132 B
JavaScript

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