blob: a0848e1de90980dfb1f476af8c510e5c43bd1400 (
plain)
1
2
3
4
5
6
7
8
9
|
if (typeof console === "undefined" || typeof console.log === "undefined") {
var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
"group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
window.console = {};
for (var i = 0; i < names.length; ++i) {
window.console[names[i]] = function() {}
}
}
|