Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/async.util.isarraylike/index.js
1126 views
1
'use strict';
2
3
var isArray = require('async.util.isarray');
4
5
module.exports = function isArrayLike(arr) {
6
return isArray(arr) || (
7
// has a positive integer length property
8
typeof arr.length === 'number' &&
9
arr.length >= 0 &&
10
arr.length % 1 === 0
11
);
12
};
13
14