- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
13 lines
450 B
JavaScript
13 lines
450 B
JavaScript
"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
|