initial commit

This commit is contained in:
i2p
2026-08-27 21:09:14 +00:00
commit a5b6d59437
12681 changed files with 3253832 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { expect, test } from "bun:test";
export const Infinity = 1 / 0;
test("Infinity", async () => {
expect(Infinity).toBe(globalThis.Infinity);
const Mod = await import(import.meta.path);
expect(Mod.Infinity).toBe(1 / 0);
expect(Mod.Infinity).toBe(globalThis.Infinity);
});