- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
22 lines
655 B
JavaScript
22 lines
655 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var is_array_like_1 = require("./is-array-like");
|
|
var splice = Array.prototype.splice;
|
|
var pullAt = function pullAt(arr, indexes) {
|
|
if (!is_array_like_1.default(arr)) {
|
|
return [];
|
|
}
|
|
var length = arr ? indexes.length : 0;
|
|
var last = length - 1;
|
|
while (length--) {
|
|
var previous = void 0;
|
|
var index = indexes[length];
|
|
if (length === last || index !== previous) {
|
|
previous = index;
|
|
splice.call(arr, index, 1);
|
|
}
|
|
}
|
|
return arr;
|
|
};
|
|
exports.default = pullAt;
|
|
//# sourceMappingURL=pull-at.js.map
|