forked from dachan/dach
1
0
Fork 0
dach/node_modules/async/internal/isArrayLike.js

10 lines
282 B
JavaScript
Raw Normal View History

2023-10-22 22:39:45 +03:00
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isArrayLike;
function isArrayLike(value) {
return value && typeof value.length === 'number' && value.length >= 0 && value.length % 1 === 0;
}
module.exports = exports['default'];