aboutsummaryrefslogtreecommitdiff
path: root/node_modules/path-key/index.js
blob: 3233661e112a54d83de9a585793182139e37ea05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict';
module.exports = function (opts) {
	opts = opts || {};

	var env = opts.env || process.env;
	var platform = opts.platform || process.platform;

	if (platform !== 'win32') {
		return 'PATH';
	}

	return Object.keys(env).filter(function (x) {
		return x.toUpperCase() === 'PATH';
	})[0] || 'Path';
};