UNPKG

package-proxy

Version:
9 lines (8 loc) 226 B
/** @format */ import fs from "fs"; export const writeFile = (data, dest, cb) => fs.writeFile(`${dest}/package.json`, data, function (err) { /* istanbul ignore next */ if (err) throw err; !!cb && cb(); });