index.js
1 'use strict'; 2 const fs = require('fs'); 3 const {promisify} = require('util'); 4 5 const pAccess = promisify(fs.access); 6 7 module.exports = async path => { 8 try { 9 await pAccess(path); 10 return true; 11 } catch (_) { 12 return false; 13 } 14 }; 15 16 module.exports.sync = path => { 17 try { 18 fs.accessSync(path); 19 return true; 20 } catch (_) { 21 return false; 22 } 23 };