UNPKG

siegel

Version:

Web application development ecosystem

7 lines (6 loc) 179 B
import fs from 'fs'; function requireJSON(path) { const jsonFileContent = fs.readFileSync(path, 'utf8'); return JSON.parse(jsonFileContent); } export default requireJSON;