UNPKG

esa-cli

Version:

A CLI for operating Alibaba Cloud ESA Functions and Pages.

11 lines (10 loc) 272 B
import { readFileSync } from 'fs'; export const readJson = (jsonPath) => { try { const json = JSON.parse(readFileSync(jsonPath, 'utf8')); return json; } catch (_) { throw new TypeError(`${jsonPath} is not a valid JSON file.`); } };