A helper class for debugging
Ten skrypt nie powinien być instalowany bezpośrednio. Jest to biblioteka dla innych skyptów do włączenia dyrektywą meta // @require https://update.greasyfork.org/scripts/33864/222487/Debugger.js
function Debugger(name, enabled) {
this.debug = {}
if (!window.console) {
return function () {
}
}
for (let m in console) {
if (typeof console[m] === 'function') {
if (enabled) {
this.debug[m] = console[m].bind(window.console + ': ' + name + ': ')
} else {
this.debug[m] = function () {
}
}
}
}
return this.debug
}