diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
commit | bbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch) | |
tree | c58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/path-exists | |
parent | 003fb34971cf63466184351b4db5f7c67df4f444 (diff) |
update packages
Diffstat (limited to 'node_modules/path-exists')
-rw-r--r-- | node_modules/path-exists/index.js | 21 | ||||
-rw-r--r-- | node_modules/path-exists/package.json | 10 | ||||
-rw-r--r-- | node_modules/path-exists/readme.md | 13 |
3 files changed, 21 insertions, 23 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; diff --git a/node_modules/path-exists/package.json b/node_modules/path-exists/package.json index 5477ee8d9..efd56267e 100644 --- a/node_modules/path-exists/package.json +++ b/node_modules/path-exists/package.json @@ -1,6 +1,6 @@ { "name": "path-exists", - "version": "2.1.0", + "version": "3.0.0", "description": "Check if a path exists", "license": "MIT", "repository": "sindresorhus/path-exists", @@ -10,7 +10,7 @@ "url": "sindresorhus.com" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" }, "scripts": { "test": "xo && ava" @@ -30,11 +30,11 @@ "access", "stat" ], - "dependencies": { - "pinkie-promise": "^2.0.0" - }, "devDependencies": { "ava": "*", "xo": "*" + }, + "xo": { + "esnext": true } } diff --git a/node_modules/path-exists/readme.md b/node_modules/path-exists/readme.md index 8fbcd68df..1b65fa705 100644 --- a/node_modules/path-exists/readme.md +++ b/node_modules/path-exists/readme.md @@ -20,9 +20,9 @@ $ npm install --save path-exists ```js // foo.js -var pathExists = require('path-exists'); +const pathExists = require('path-exists'); -pathExists('foo.js').then(function (exists) { +pathExists('foo.js').then(exists => { console.log(exists); //=> true }); @@ -33,13 +33,18 @@ pathExists('foo.js').then(function (exists) { ### pathExists(path) -Returns a promise that resolves to a boolean of whether the path exists. +Returns a promise for a boolean of whether the path exists. ### pathExists.sync(path) Returns a boolean of whether the path exists. +## Related + +- [path-exists-cli](https://github.com/sindresorhus/path-exists-cli) - CLI for this module + + ## License -MIT © [Sindre Sorhus](http://sindresorhus.com) +MIT © [Sindre Sorhus](https://sindresorhus.com) |