(text: string)
| 225 | } |
| 226 | |
| 227 | function toLogFileText(text: string) { |
| 228 | return text.replace(terminalEscapeSequences, '') |
| 229 | .replace(/(\r?\n)?$/, os.EOL); |
| 230 | } |
| 231 | |
| 232 | function neverLogEventError(e: never) { |
| 233 | return new Error(`Unknown log event type: ${(e as LogEvent).type}`); |
no outgoing calls
no test coverage detected