Advertisement
Guest User

Untitled

a guest
Jan 24th, 2015
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var fs = require('fs');
  2. readFile();
  3.  
  4. function readFile(){
  5.  (function(){
  6.   fs.readFileSync('test');;
  7.  }())
  8.  
  9.  console.log('Read file.');
  10. }
  11.  
  12. // wait 10 seconds and then exit
  13. setTimeout(null, 10000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement