UNPKG

iptv-checker

Version:

Node.js CLI tool for checking links in IPTV playlists

27 lines (21 loc) 386 B
class Logger { constructor({ debug }) { this.debugMode = debug } info(msg) { this.print(msg) } error(msg) { this.print(msg.red) } debug(msg) { if (!this.debugMode) return this.print(msg) } print(msg) { if (typeof msg === `object`) { console.log(JSON.stringify(msg, null, 1)) } else console.log(msg) } } module.exports = Logger