mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-17 14:55:05 -05:00
28 lines
795 B
JavaScript
28 lines
795 B
JavaScript
// follow @HenrikJoreteg and @andyet if you like this ;)
|
|
(function (window) {
|
|
var ls = window.localStorage,
|
|
out = {},
|
|
inNode = typeof process !== 'undefined';
|
|
|
|
if (inNode) {
|
|
module.exports = console;
|
|
return;
|
|
}
|
|
|
|
if (ls && ls.debug && window.console) {
|
|
out = window.console;
|
|
} else {
|
|
var methods = "assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),
|
|
l = methods.length,
|
|
fn = function () {};
|
|
|
|
while (l--) {
|
|
out[methods[l]] = fn;
|
|
}
|
|
}
|
|
if (typeof exports !== 'undefined') {
|
|
module.exports = out;
|
|
} else {
|
|
window.console = out;
|
|
}
|
|
})(this); |