(str: string)
| 282 | } |
| 283 | |
| 284 | export function toWarningText(str: string) { |
| 285 | return str.split(/\r?\n/) |
| 286 | .map(line => `[1m[33m${line}[39m[22m`) |
| 287 | .join('\r\n') + '\r\n'; |
| 288 | } |
| 289 | |
| 290 | export function replaceAllLog(origin: LogHandler, values: string[], replacement: string): LogHandler { |
| 291 | values = values |
no outgoing calls
no test coverage detected