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

test.js « npm-test-env-reader « packages « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6cb7893a70f7a35be7715847f4b112de53c6639 (plain)
1
2
3
4
5
6
7
8
9
var envs = []
for (var e in process.env) {
  if (e.match(/npm|^path$/i)) envs.push(e + '=' + process.env[e])
}
envs.sort(function (a, b) {
  return a === b ? 0 : a > b ? -1 : 1
}).forEach(function (e) {
  console.log(e)
})