Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const fs = require('fs');
  2.  
  3. const fileExists = path => file => fs.existsSync(`${path}/${file}`);
  4.  
  5. const fileExistsInSrc = fileExists('/src'); // file => fs.existsSync(`${path}/${file}`)
  6.  
  7. fileExistsInSrc('index.js') // true || false
Add Comment
Please, Sign In to add comment