astro-ghostcms/.pnpm-store/v3/files/2b/7d4cdc66cc7ef5423ae994e8044...

13 lines
263 B
Plaintext

export default function pathKey(options = {}) {
const {
env = process.env,
platform = process.platform
} = options;
if (platform !== 'win32') {
return 'PATH';
}
return Object.keys(env).reverse().find(key => key.toUpperCase() === 'PATH') || 'Path';
}