@@ -4,50 +4,50 @@ var value = null;
4
4
>null : null
5
5
6
6
JSON.stringify(value, undefined, 2);
7
- >JSON.stringify(value, undefined, 2) : string
8
- >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
7
+ >JSON.stringify(value, undefined, 2) : string | undefined
8
+ >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
9
9
>JSON : JSON
10
- >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
10
+ >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
11
11
>value : null
12
12
>undefined : undefined
13
13
>2 : 2
14
14
15
15
JSON.stringify(value, null, 2);
16
- >JSON.stringify(value, null, 2) : string
17
- >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
16
+ >JSON.stringify(value, null, 2) : string | undefined
17
+ >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
18
18
>JSON : JSON
19
- >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
19
+ >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
20
20
>value : null
21
21
>null : null
22
22
>2 : 2
23
23
24
24
JSON.stringify(value, ["a", 1], 2);
25
- >JSON.stringify(value, ["a", 1], 2) : string
26
- >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
25
+ >JSON.stringify(value, ["a", 1], 2) : string | undefined
26
+ >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
27
27
>JSON : JSON
28
- >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
28
+ >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
29
29
>value : null
30
30
>["a", 1] : (string | number)[]
31
31
>"a" : "a"
32
32
>1 : 1
33
33
>2 : 2
34
34
35
35
JSON.stringify(value, (k) => undefined, 2);
36
- >JSON.stringify(value, (k) => undefined, 2) : string
37
- >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
36
+ >JSON.stringify(value, (k) => undefined, 2) : string | undefined
37
+ >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
38
38
>JSON : JSON
39
- >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
39
+ >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
40
40
>value : null
41
41
>(k) => undefined : (k: string) => undefined
42
42
>k : string
43
43
>undefined : undefined
44
44
>2 : 2
45
45
46
46
JSON.stringify(value, undefined, 2);
47
- >JSON.stringify(value, undefined, 2) : string
48
- >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
47
+ >JSON.stringify(value, undefined, 2) : string | undefined
48
+ >JSON.stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
49
49
>JSON : JSON
50
- >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string; }
50
+ >stringify : { (value: any, replacer?: ((key: string, value: any) => any) | undefined, space?: string | number | undefined): string | undefined ; (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string | undefined ; }
51
51
>value : null
52
52
>undefined : undefined
53
53
>2 : 2
0 commit comments