UNPKG

@withstudiocms/internal_helpers

Version:

Internal helper utilities for StudioCMS

13 lines (12 loc) 254 B
import fs from "node:fs"; function jsonParse(text) { return JSON.parse(text); } function readJson(path, readFileSync = fs.readFileSync) { const content = readFileSync(path, "utf-8"); return jsonParse(content); } export { jsonParse, readJson };