mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
Now that LibUnicode exports its character type APIs in Rust, we can use them to lex identifiers and whitespace. Fixes #8870.
8 lines
119 B
JavaScript
8 lines
119 B
JavaScript
test("basic functionality", () => {
|
|
const foo = {
|
|
ำ: 12389,
|
|
};
|
|
|
|
expect(foo.ำ).toBe(12389);
|
|
});
|