blob: e382fa3062370f13a5c79b97ac5519cd0a8ae041 (
plain)
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
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
/* eslint-disable @typescript-eslint/no-explicit-any */
type Replacer = (key: string, value: any) => any;
export interface WriteJsonOptions {
spaces?: number | string;
replacer?: Array<number | string> | Replacer;
}
/* Writes an object to a JSON file. */
export async function writeJson(
filePath: string,
object: any,
options: WriteJsonOptions = {}
): Promise<void> {
let contentRaw = "";
try {
contentRaw = JSON.stringify(
object,
options.replacer as string[],
options.spaces
);
} catch (err) {
err.message = `${filePath}: ${err.message}`;
throw err;
}
await Deno.writeFile(filePath, new TextEncoder().encode(contentRaw));
}
/* Writes an object to a JSON file. */
export function writeJsonSync(
filePath: string,
object: any,
options: WriteJsonOptions = {}
): void {
let contentRaw = "";
try {
contentRaw = JSON.stringify(
object,
options.replacer as string[],
options.spaces
);
} catch (err) {
err.message = `${filePath}: ${err.message}`;
throw err;
}
Deno.writeFileSync(filePath, new TextEncoder().encode(contentRaw));
}
|