Advertisement
zapho53

Untitled

Feb 1st, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. fs.readFile("file", "utf8", function(err, res) {
  2.   fs.readFile(res, "utf8", function(err, res) {
  3.     fs.readFile(res, "utf8", function(err, res) {
  4.       console.log(res);
  5.     });
  6.   });
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement