UNPKG

132 BJavaScriptView Raw
1'use strict';
2
3global.env = function (hash, alt) {
4 if (!hash) {
5 return process.env;
6 }
7
8 return process.env[hash] || alt;
9};
\No newline at end of file