UNPKG

419 BJavaScriptView Raw
1function(global, env){ // jshint ignore:line
2 if(typeof process === "undefined") {
3 global.process = {
4 argv: [],
5 cwd: function(){
6 return "";
7 },
8 browser: true,
9 env: {
10 NODE_ENV: env || "development"
11 },
12 version: '',
13 platform: (global.navigator && global.navigator.userAgent && /Windows/.test(global.navigator.userAgent)) ? "win" : ""
14 };
15 }
16}