Sha256: fdbafdc163f668fe325333d62387365c9b074e01253e32824a4dbf5cc552705d

Contents?: true

Size: 415 Bytes

Versions: 65

Compression:

Stored size: 415 Bytes

Contents

'use strict';

const pathKey = (options = {}) => {
	const environment = options.env || process.env;
	const platform = options.platform || process.platform;

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

	return Object.keys(environment).reverse().find(key => key.toUpperCase() === 'PATH') || 'Path';
};

module.exports = pathKey;
// TODO: Remove this for the next major release
module.exports.default = pathKey;

Version data entries

65 entries across 65 versions & 5 rubygems

Version Path
appmap-0.65.1 ./node_modules/path-key/index.js
appmap-0.65.0 ./node_modules/path-key/index.js
appmap-0.64.0 ./node_modules/path-key/index.js
appmap-0.63.0 ./node_modules/path-key/index.js
appmap-0.62.1 ./node_modules/path-key/index.js