UNPKG

@dbp-toolkit/common

Version:
12 lines (10 loc) 230 B
class LoggerType { get debug() { if (window.location.hash.includes('debug')) { return console.debug; } else { return () => {}; } } } export const Logger = new LoggerType();