UNPKG

@digital-blueprint/lunchlottery-app

Version:

[GitHub Repository](https://github.com/digital-blueprint/lunchlottery-app) | [npmjs package](https://www.npmjs.com/package/@digital-blueprint/lunchlottery-app) | [Unpkg CDN](https://unpkg.com/browse/@digital-blueprint/lunchlottery-app/)

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();