stormbytes

Untitled

Jun 1st, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function puts(file) {
  2.     fs.readFile(file, 'utf8', (err, data) => {
  3.         return data;
  4.     });
  5. }
  6.  
  7. console.log(puts('foo.txt'));
Advertisement
Add Comment
Please, Sign In to add comment