(l: string)
| 552 | if (!/^[ \t]*[A-Z][A-Z0-9_]{3,}[ \t]*\r?$/m.test(source)) return source; |
| 553 | const lines = source.split('\n'); |
| 554 | const content = (l: string): string => l.replace(/\r$/, '').trim(); |
| 555 | let changed = false; |
| 556 | for (let i = 0; i < lines.length; i++) { |
| 557 | const line = lines[i] as string; |
no outgoing calls
no test coverage detected