Files

8 lines
167 B
TypeScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
import { expect, test } from "bun:test";
test("15326", () => {
const s = "\uFFFF";
expect(s.charCodeAt(0)).toBe(0xffff);
expect(s.charCodeAt(1)).toBe(NaN);
});