Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

16 righe
415 B

3 anni fa
  1. 'use strict';
  2. const pathKey = (options = {}) => {
  3. const environment = options.env || process.env;
  4. const platform = options.platform || process.platform;
  5. if (platform !== 'win32') {
  6. return 'PATH';
  7. }
  8. return Object.keys(environment).reverse().find(key => key.toUpperCase() === 'PATH') || 'Path';
  9. };
  10. module.exports = pathKey;
  11. // TODO: Remove this for the next major release
  12. module.exports.default = pathKey;