Open BenGitsCode opened 7 years ago
json = JSON.stringify(pojo, null, 2); fs.writeFile(outFile, json, { flag: outFileFlag }, error => { if (error) { console.error(error.stack); return; } - console.error('\ncopied'); + // let's us know that the function ran successfully + console.log('\ncopied'); }); }); }; module.exports = copyJson;