UNPKG

a-pollo

Version:

The visual CSS style guide for teams

12 lines (9 loc) 247 B
const fs = require('fs') function saveJson (path, data, exit) { const exitWhenFinished = exit || true fs.writeFileSync(path, JSON.stringify(data, null, 2), 'utf8') if (exitWhenFinished) { process.exit() } } module.exports = saveJson