Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const writeJSONFile = (filename, content) => {
  2.     // We use FS to write the JSON Data content into the filename
  3.     fs.writeFileSync(filename, JSON.stringify(content), "utf8", err => {
  4.         // If any error we show in console
  5.         if (err) {
  6.             console.log(err);
  7.         }
  8.     });
  9. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement