wallet-core/node_modules/isarray/index.js

6 lines
132 B
JavaScript
Raw Normal View History

2016-11-03 01:33:53 +01:00
var toString = {}.toString;
2016-10-10 03:43:44 +02:00
module.exports = Array.isArray || function (arr) {
2016-11-03 01:33:53 +01:00
return toString.call(arr) == '[object Array]';
2016-10-10 03:43:44 +02:00
};