main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
415 bytes
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | const pathKey = (options = {}) => {
|
---|
| 4 | const environment = options.env || process.env;
|
---|
| 5 | const platform = options.platform || process.platform;
|
---|
| 6 |
|
---|
| 7 | if (platform !== 'win32') {
|
---|
| 8 | return 'PATH';
|
---|
| 9 | }
|
---|
| 10 |
|
---|
| 11 | return Object.keys(environment).reverse().find(key => key.toUpperCase() === 'PATH') || 'Path';
|
---|
| 12 | };
|
---|
| 13 |
|
---|
| 14 | module.exports = pathKey;
|
---|
| 15 | // TODO: Remove this for the next major release
|
---|
| 16 | module.exports.default = pathKey;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.