diff options
Diffstat (limited to 'fs/read_json.ts')
| -rw-r--r-- | fs/read_json.ts | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/fs/read_json.ts b/fs/read_json.ts index d5c639ae2..1bed75078 100644 --- a/fs/read_json.ts +++ b/fs/read_json.ts @@ -1,12 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import * as path from "./path/mod.ts"; -/** - * Reads a JSON file and then parses it into an object - * @export - * @param {string} filePath - * @returns {Promise<any>} - */ +/** Reads a JSON file and then parses it into an object */ export async function readJson(filePath: string): Promise<any> { filePath = path.resolve(filePath); const decoder = new TextDecoder("utf-8"); @@ -21,12 +16,7 @@ export async function readJson(filePath: string): Promise<any> { } } -/** - * Reads a JSON file and then parses it into an object - * @export - * @param {string} filePath - * @returns {void} - */ +/** Reads a JSON file and then parses it into an object */ export function readJsonSync(filePath: string): any { filePath = path.resolve(filePath); const decoder = new TextDecoder("utf-8"); |
