deno.land / x / zod@v3.19.1 / benchmarks / string.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
import Benchmark from "benchmark";
import { z } from "../index.ts";
const SUITE_NAME = "z.string";const suite = new Benchmark.Suite(SUITE_NAME);
const empty = "";const short = "short";const long = "long".repeat(256);const manual = (str: unknown) => { if (typeof str !== "string") { throw new Error("Not a string"); }
return str;};const stringSchema = z.string();const optionalStringSchema = z.string().optional();const optionalNullableStringSchema = z.string().optional().nullable();
suite .add("empty string", () => { stringSchema.parse(empty); }) .add("short string", () => { stringSchema.parse(short); }) .add("long string", () => { stringSchema.parse(long); }) .add("optional string", () => { optionalStringSchema.parse(long); }) .add("nullable string", () => { optionalNullableStringSchema.parse(long); }) .add("nullable (null) string", () => { optionalNullableStringSchema.parse(null); }) .add("invalid: null", () => { try { stringSchema.parse(null); } catch (err) {} }) .add("manual parser: long", () => { manual(long); }) .on("cycle", (e: Benchmark.Event) => { console.log(`${SUITE_NAME}: ${e.target}`); });
export default { suites: [suite],};
zod

Version Info

Tagged at
a year ago