(...args: Parameters<typeof console.log>)
| 82 | } |
| 83 | |
| 84 | function log(...args: Parameters<typeof console.log>): void { |
| 85 | _maybeLog('log', ...args); |
| 86 | } |
| 87 | |
| 88 | function warn(...args: Parameters<typeof console.warn>): void { |
| 89 | _maybeLog('warn', ...args); |
nothing calls this directly
no test coverage detected