版博士V2.0程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

17 rader
415 B

  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;