You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
450 B
13 lines
450 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var isArrayLike = function (value) {
|
|
/**
|
|
* isArrayLike([1, 2, 3]) => true
|
|
* isArrayLike(document.body.children) => true
|
|
* isArrayLike('abc') => true
|
|
* isArrayLike(Function) => false
|
|
*/
|
|
return value !== null && typeof value !== 'function' && isFinite(value.length);
|
|
};
|
|
exports.default = isArrayLike;
|
|
//# sourceMappingURL=is-array-like.js.map
|