1
0
mirror of https://github.com/actions/labeler synced 2026-05-06 03:37:48 +02:00
Files
labeler/node_modules/path-key/index.js
Shawn Napora 660b172085 add modules
2019-08-08 10:10:17 -04:00

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';
};