Guest User

Untitled

a guest
Jan 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. fs = require('fs');
  2.  
  3. logToFile = function(fileName, objectToLog) {
  4.  
  5. jsonText = JSON.stringify(objectToLog, null, 't');
  6. fs.writeFileSync(fileName, jsonText, 'utf8');
  7.  
  8. }
  9.  
  10. sampleData = { name: 'Batman', city: 'Gotham' };
  11. logToFile('log.txt', sampleData);
Add Comment
Please, Sign In to add comment