summaryrefslogtreecommitdiff
path: root/std/fs/write_json.ts
blob: 28eb80d443e19ada8839bc29f8a89995592b4a4b (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
53
54
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
// eslint-disable-next-line @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,
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
  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,
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
  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));
}