moon_flash / node_modules /async /internal /isArrayLike.js
AK51's picture
Upload 1987 files
e472a78 verified
'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;