()
| 46 | let writeQueue: Promise<void> = Promise.resolve(); |
| 47 | |
| 48 | function nowIso(): string { |
| 49 | return new Date().toISOString(); |
| 50 | } |
| 51 | |
| 52 | function asError(error: unknown): Error { |
| 53 | if (error instanceof Error) return error; |
no outgoing calls
no test coverage detected