Welcome to mirror list, hosted at ThFree Co, Russian Federation.

path.js « utils « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fcbf92e569757af5d3948453bff0b14470bd3d4f (plain)
1
2
3
4
5
// return the PATH array in a cross-platform way
// TODO this is only used in a single place
const PATH = process.env.PATH || process.env.Path || process.env.path
const { delimiter } = require('path')
module.exports = PATH.split(delimiter)