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