aboutsummaryrefslogtreecommitdiff
path: root/node_modules/path-exists/index.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
committerFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
commitbbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch)
treec58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/path-exists/index.js
parent003fb34971cf63466184351b4db5f7c67df4f444 (diff)
update packages
Diffstat (limited to 'node_modules/path-exists/index.js')
-rw-r--r--node_modules/path-exists/index.js21
1 files changed, 7 insertions, 14 deletions
diff --git a/node_modules/path-exists/index.js b/node_modules/path-exists/index.js
index a7e680a76..16ae60acb 100644
--- a/node_modules/path-exists/index.js
+++ b/node_modules/path-exists/index.js
@@ -1,22 +1,15 @@
'use strict';
-var fs = require('fs');
-var Promise = require('pinkie-promise');
+const fs = require('fs');
-module.exports = function (fp) {
- var fn = typeof fs.access === 'function' ? fs.access : fs.stat;
-
- return new Promise(function (resolve) {
- fn(fp, function (err) {
- resolve(!err);
- });
+module.exports = fp => new Promise(resolve => {
+ fs.access(fp, err => {
+ resolve(!err);
});
-};
-
-module.exports.sync = function (fp) {
- var fn = typeof fs.accessSync === 'function' ? fs.accessSync : fs.statSync;
+});
+module.exports.sync = fp => {
try {
- fn(fp);
+ fs.accessSync(fp);
return true;
} catch (err) {
return false;