mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
This matches our coding style recommendation in CodingStyle.md, and matches our python formatting.
10 lines
445 B
JavaScript
10 lines
445 B
JavaScript
test("basic functionality", () => {
|
|
let string = `{"var1":10,"var2":"hello","var3":{"nested":5}}`;
|
|
|
|
let object = JSON.parse(string, (key, value) => (typeof value === "number" ? value * 2 : value));
|
|
expect(object).toEqual({ var1: 20, var2: "hello", var3: { nested: 10 } });
|
|
|
|
object = JSON.parse(string, (key, value) => (typeof value === "number" ? undefined : value));
|
|
expect(object).toEqual({ var2: "hello", var3: {} });
|
|
});
|