DIR: /proc/1991109/root/usr/share/node_modules/path-key/ |
Current File : //proc/1991109/root/usr/share/node_modules/path-key/dhnodejsBundle.cjs |
function pathKey(options = {}) { const { env = process.env, platform = process.platform } = options; if (platform !== 'win32') { return 'PATH'; } return Object.keys(env).reverse().find(key => key.toUpperCase() === 'PATH') || 'Path'; } module.exports = pathKey; |