-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Expand file tree
/
Copy pathjsonParseWithSource.js
More file actions
46 lines (40 loc) · 1.22 KB
/
jsonParseWithSource.js
File metadata and controls
46 lines (40 loc) · 1.22 KB
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
//// [tests/cases/compiler/jsonParseWithSource.ts] ////
//// [jsonParseWithSource.ts]
// JSON.rawJSON
const raw = JSON.rawJSON("123");
const rawStr: string = raw.rawJSON;
JSON.stringify({ value: raw });
JSON.stringify({ n: JSON.rawJSON("12345678901234567890") });
// JSON.isRawJSON
const maybeRaw: unknown = {};
if (JSON.isRawJSON(maybeRaw)) {
const text: string = maybeRaw.rawJSON;
}
// JSON.parse with reviver context
JSON.parse('{"key":123}', (key, value, context) => {
const src: string = context.source;
return value;
});
// Existing JSON.parse overloads still work
JSON.parse("{}");
JSON.parse('{"a":1}', (key, value) => value);
//// [jsonParseWithSource.js]
"use strict";
// JSON.rawJSON
const raw = JSON.rawJSON("123");
const rawStr = raw.rawJSON;
JSON.stringify({ value: raw });
JSON.stringify({ n: JSON.rawJSON("12345678901234567890") });
// JSON.isRawJSON
const maybeRaw = {};
if (JSON.isRawJSON(maybeRaw)) {
const text = maybeRaw.rawJSON;
}
// JSON.parse with reviver context
JSON.parse('{"key":123}', (key, value, context) => {
const src = context.source;
return value;
});
// Existing JSON.parse overloads still work
JSON.parse("{}");
JSON.parse('{"a":1}', (key, value) => value);