( value: string, format: Parameters<typeof colorize>[1], useColor: boolean, )
| 113 | } |
| 114 | |
| 115 | function formatProxyOutputValue( |
| 116 | value: string, |
| 117 | format: Parameters<typeof colorize>[1], |
| 118 | useColor: boolean, |
| 119 | ): string { |
| 120 | return useColor ? colorize(value, format, { validateStream: false }) : value; |
| 121 | } |
| 122 | |
| 123 | function waitForever(): Promise<never> { |
| 124 | return new Promise(() => {}); |
no test coverage detected