database-petani-mobile/node_modules/isarray/index.js
2026-02-23 16:39:35 +07:00

6 lines
132 B
JavaScript

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