Original: 1805c18ac7
This commit is contained in:
Vincent LE GOFF 2019-03-14 15:24:54 +01:00 committed by Ryan Dahl
parent a391660d2d
commit 0b4f73cf9d
8 changed files with 34 additions and 82 deletions

View file

@ -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");