-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
48 lines (37 loc) · 1.25 KB
/
index.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
// deno-lint-ignore-file no-explicit-any ban-ts-comment
import typeson from './typeson.ts'
// @ts-ignore
import { structuredCloningThrowing } from 'https://unpkg.com/[email protected]/dist/index.js';
import blob from './blob.js'
import file from './file.js'
import filelist from './filelist.js'
const { Typeson } = typeson;
const structuredCloningThrowingPatched = (structuredCloningThrowing as any[])
.filter((x: any) => !x.file && !x.blob)
.concat([blob, file, filelist])
const Structured = new Typeson().register([structuredCloningThrowingPatched]);
export function parse(s: string) {
return Structured.revive(JSON.parse(s))
}
export function stringify(value: any): string {
return Structured.stringifySync(value);
}
export function stringifyAsync(value: any): string | Promise<string> {
return Structured.stringifyAsync(value);
}
export function toJSON(value: any): any {
return Structured.encapsulateSync(value)
}
export function toJSONAsync(value: any): any | Promise<any> {
return Structured.encapsulateAsync(value)
}
export function fromJSON(json: any) {
return Structured.revive(json)
}
export {
toJSON as toJSONValue,
fromJSON as fromJSONValue,
fromJSON as revive,
toJSON as encapsulate,
toJSONAsync as encapsulateAsync,
}