aboutsummaryrefslogtreecommitdiff
path: root/node_modules/path-key
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-08-14 05:01:11 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-08-14 05:02:09 +0200
commit363723fc84f7b8477592e0105aeb331ec9a017af (patch)
tree29f92724f34131bac64d6a318dd7e30612e631c7 /node_modules/path-key
parent5634e77ad96bfe1818f6b6ee70b7379652e5487f (diff)
downloadwallet-core-363723fc84f7b8477592e0105aeb331ec9a017af.tar.xz
node_modules
Diffstat (limited to 'node_modules/path-key')
-rw-r--r--node_modules/path-key/index.js10
-rw-r--r--node_modules/path-key/package.json7
-rw-r--r--node_modules/path-key/readme.md6
3 files changed, 12 insertions, 11 deletions
diff --git a/node_modules/path-key/index.js b/node_modules/path-key/index.js
index 3233661e1..62c8250ab 100644
--- a/node_modules/path-key/index.js
+++ b/node_modules/path-key/index.js
@@ -1,15 +1,13 @@
'use strict';
-module.exports = function (opts) {
+module.exports = opts => {
opts = opts || {};
- var env = opts.env || process.env;
- var platform = opts.platform || process.platform;
+ const env = opts.env || process.env;
+ const platform = opts.platform || process.platform;
if (platform !== 'win32') {
return 'PATH';
}
- return Object.keys(env).filter(function (x) {
- return x.toUpperCase() === 'PATH';
- })[0] || 'Path';
+ return Object.keys(env).find(x => x.toUpperCase() === 'PATH') || 'Path';
};
diff --git a/node_modules/path-key/package.json b/node_modules/path-key/package.json
index 2f4a6f04c..81e0e8bed 100644
--- a/node_modules/path-key/package.json
+++ b/node_modules/path-key/package.json
@@ -1,6 +1,6 @@
{
"name": "path-key",
- "version": "1.0.0",
+ "version": "2.0.1",
"description": "Get the PATH environment variable key cross-platform",
"license": "MIT",
"repository": "sindresorhus/path-key",
@@ -10,7 +10,7 @@
"url": "sindresorhus.com"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=4"
},
"scripts": {
"test": "xo && ava"
@@ -32,5 +32,8 @@
"devDependencies": {
"ava": "*",
"xo": "*"
+ },
+ "xo": {
+ "esnext": true
}
}
diff --git a/node_modules/path-key/readme.md b/node_modules/path-key/readme.md
index 19a3af096..cb5710aac 100644
--- a/node_modules/path-key/readme.md
+++ b/node_modules/path-key/readme.md
@@ -33,14 +33,14 @@ const PATH = process.env[key];
##### env
-Type: `object`
+Type: `Object`<br>
Default: [`process.env`](https://nodejs.org/api/process.html#process_process_env)
Use a custom environment variables object.
#### platform
-Type: `string`
+Type: `string`<br>
Default: [`process.platform`](https://nodejs.org/api/process.html#process_process_platform)
Get the PATH key for a specific platform.
@@ -48,4 +48,4 @@ Get the PATH key for a specific platform.
## License
-MIT © [Sindre Sorhus](http://sindresorhus.com)
+MIT © [Sindre Sorhus](https://sindresorhus.com)