Guest User

Untitled

a guest
Feb 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. let line;
  2. fs.readFile('./file.txt', 'utf8', (err, data) => {
  3. line = data.split('n')[1]);
  4. });
  5.  
  6. const str = fs.readFileSync('./file.txt', 'utf8');
  7. const line = str.split('n')[1];
Add Comment
Please, Sign In to add comment