-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwrite_json.ts
57 lines (53 loc) · 1.43 KB
/
write_json.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
57
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
// deno-lint-ignore no-explicit-any
type Replacer = (key: string, value: any) => any;
export interface WriteJsonOptions extends Deno.WriteFileOptions {
replacer?: Array<number | string> | Replacer;
spaces?: number | string;
}
function serialize(
filePath: string,
// deno-lint-ignore no-explicit-any
object: any,
options: WriteJsonOptions,
): string {
try {
const jsonString = JSON.stringify(
object,
options.replacer as string[],
options.spaces,
);
return `${jsonString}\n`;
} catch (err) {
err.message = `${filePath}: ${err.message}`;
throw err;
}
}
/* Writes an object to a JSON file. */
export async function writeJson(
filePath: string,
// deno-lint-ignore no-explicit-any
object: any,
options: WriteJsonOptions = {},
): Promise<void> {
const jsonString = serialize(filePath, object, options);
await Deno.writeTextFile(filePath, jsonString, {
append: options.append,
create: options.create,
mode: options.mode,
});
}
/* Writes an object to a JSON file. */
export function writeJsonSync(
filePath: string,
// deno-lint-ignore no-explicit-any
object: any,
options: WriteJsonOptions = {},
): void {
const jsonString = serialize(filePath, object, options);
Deno.writeTextFileSync(filePath, jsonString, {
append: options.append,
create: options.create,
mode: options.mode,
});
}