flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
12
BACK_BACK/node_modules/node-libs-browser/mock/console.js
generated
vendored
Executable file
12
BACK_BACK/node_modules/node-libs-browser/mock/console.js
generated
vendored
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
var console;
|
||||
if (typeof global !== "undefined" && global.console) {
|
||||
console = global.console
|
||||
} else if (typeof window !== "undefined" && window.console) {
|
||||
console = window.console
|
||||
} else {
|
||||
console = window.console = {}
|
||||
}
|
||||
module.exports = console;
|
||||
for(var name in {log:1, info:1, error:1, warn:1, dir:1, trace:1, assert:1, time:1, timeEnd: 1})
|
||||
if(!console[name])
|
||||
console[name] = function() {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue