(error: unknown)
| 126 | } |
| 127 | |
| 128 | function formatSecretError(error: unknown): string { |
| 129 | return (error as Error)?.message ?? String(error); |
| 130 | } |
| 131 | |
| 132 | function skipWhitespaceAndComments(source: string, index: number): number { |
| 133 | let current = index; |
no outgoing calls
no test coverage detected