UNPKG

225 BJavaScriptView Raw
1const {resolve} = require('path')
2const {existsSync} = require('fs')
3
4module.exports = function readJSON(path) {
5 const resolved = resolve(process.cwd(), path)
6 return existsSync(resolved) ? require(resolved) : undefined
7}