deno.land / x / lume@v2.1.4 / core / loaders / json.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { parse } from "../../deps/jsonc.ts";import { isPlainObject } from "../utils/object.ts";import { read } from "../utils/read.ts";
import type { RawData } from "../file.ts";
/** Load and parse a JSON / JSONC file */export default async function json(path: string): Promise<RawData> { const text = await read(path, false); const content = path.endsWith(".jsonc") ? parse(text) : JSON.parse(text);
if (!content) { return {}; }
if (isPlainObject(content)) { return content as RawData; }
return { content };}
lume

Version Info

Tagged at
7 months ago