(title: string, ...args: any[])
| 30 | } |
| 31 | |
| 32 | export function logInfoCollapsed(title: string, ...args: any[]): void { |
| 33 | if (__DEBUG__) { |
| 34 | console.groupCollapsed(`DARK READER ${title}`); |
| 35 | console.log(...args); |
| 36 | console.groupEnd(); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | function logAssert(...args: any[]): void { |
| 41 | if ((__TEST__ || __DEBUG__)) { |