(line: string)
| 222 | } |
| 223 | |
| 224 | function countBraces(line: string): number { |
| 225 | let depth = 0; |
| 226 | for (const char of line) { |
| 227 | if (char === "{") depth++; |
| 228 | if (char === "}") depth--; |
| 229 | } |
| 230 | return depth; |
| 231 | } |
| 232 | |
| 233 | function normalizeExportBlock(block: string): string { |
| 234 | return block |
no outgoing calls
no test coverage detected
searching dependent graphs…