source: trip-planner-front/node_modules/path-exists/index.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 347 bytes
Line 
1'use strict';
2const fs = require('fs');
3const {promisify} = require('util');
4
5const pAccess = promisify(fs.access);
6
7module.exports = async path => {
8 try {
9 await pAccess(path);
10 return true;
11 } catch (_) {
12 return false;
13 }
14};
15
16module.exports.sync = path => {
17 try {
18 fs.accessSync(path);
19 return true;
20 } catch (_) {
21 return false;
22 }
23};
Note: See TracBrowser for help on using the repository browser.