UNPKG

oprah

Version:

Package to deploy parameters to AWS

12 lines (7 loc) 233 B
const fs = require('fs'); const { parse } = require('./parse'); const readFile = ({ filePath }) => { const contents = fs.readFileSync(filePath, 'utf8'); return parse({ filePath, contents }); }; module.exports = { readFile };