mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
13 lines
408 B
JavaScript
13 lines
408 B
JavaScript
|
|
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() {};
|