(...args: any[])
| 6 | import { verboseEnabled } from '../../constants'; |
| 7 | |
| 8 | export function verbose(...args: any[]): void { |
| 9 | return verboseEnabled || process.argv.includes('--verbose') ? console.log(...args) : undefined; |
| 10 | } |
no outgoing calls
no test coverage detected