deno.land / x / zod@v3.19.1 / benchmarks / object.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import Benchmark from "benchmark";
import { z } from "../index.ts";
const emptySuite = new Benchmark.Suite("z.object: empty");const shortSuite = new Benchmark.Suite("z.object: short");const longSuite = new Benchmark.Suite("z.object: long");
const empty = z.object({});const short = z.object({ string: z.string(),});const long = z.object({ string: z.string(), number: z.number(), boolean: z.boolean(),});
emptySuite .add("valid", () => { empty.parse({}); }) .add("valid: extra keys", () => { empty.parse({ string: "string" }); }) .add("invalid: null", () => { try { empty.parse(null); } catch (err) {} }) .on("cycle", (e: Benchmark.Event) => { console.log(`${(emptySuite as any).name}: ${e.target}`); });
shortSuite .add("valid", () => { short.parse({ string: "string" }); }) .add("valid: extra keys", () => { short.parse({ string: "string", number: 42 }); }) .add("invalid: null", () => { try { short.parse(null); } catch (err) {} }) .on("cycle", (e: Benchmark.Event) => { console.log(`${(shortSuite as any).name}: ${e.target}`); });
longSuite .add("valid", () => { long.parse({ string: "string", number: 42, boolean: true }); }) .add("valid: extra keys", () => { long.parse({ string: "string", number: 42, boolean: true, list: [] }); }) .add("invalid: null", () => { try { long.parse(null); } catch (err) {} }) .on("cycle", (e: Benchmark.Event) => { console.log(`${(longSuite as any).name}: ${e.target}`); });
export default { suites: [emptySuite, shortSuite, longSuite],};
zod

Version Info

Tagged at
a year ago