save file

This commit is contained in:
MathMan05
2025-11-26 00:11:47 -06:00
parent 3080445768
commit 2b9802200d
-9
View File
@@ -12,15 +12,6 @@ describe("Array extensions", () => {
assert.deepEqual(odd, [1, 3, 5]);
});
it("forEachAsync", async () => {
const arr = [1, 2, 3];
let sum = 0;
await arr.forEachAsync(async (n) => {
sum += n;
});
assert.strictEqual(sum, 6);
});
it("remove", () => {
const arr = [1, 2, 3, 4, 5];
arr.remove(3);