mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 18:44:40 +00:00

PR-URL: https://github.com/nodejs/node/pull/20190 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
14 lines
281 B
JavaScript
14 lines
281 B
JavaScript
'use strict';
|
|
module.exports = opts => {
|
|
opts = opts || {};
|
|
|
|
const env = opts.env || process.env;
|
|
const platform = opts.platform || process.platform;
|
|
|
|
if (platform !== 'win32') {
|
|
return 'PATH';
|
|
}
|
|
|
|
return Object.keys(env).find(x => x.toUpperCase() === 'PATH') || 'Path';
|
|
};
|