source:
trip-planner-front/node_modules/fs-extra/lib/path-exists/index.js
Last change on this file was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 263 bytes |
Line | |
---|---|
1 | 'use strict' |
2 | const u = require('universalify').fromPromise |
3 | const fs = require('../fs') |
4 | |
5 | function pathExists (path) { |
6 | return fs.access(path).then(() => true).catch(() => false) |
7 | } |
8 | |
9 | module.exports = { |
10 | pathExists: u(pathExists), |
11 | pathExistsSync: fs.existsSync |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.