(text: string)
| 28 | } |
| 29 | |
| 30 | export function nonEmptyLines(text: string): string[] { |
| 31 | return text.split(/\r?\n/).filter(isNonEmptyText); |
| 32 | } |
| 33 | |
| 34 | export function createBasicDiagnostics(options: { |
| 35 | warnings?: readonly DiagnosticInput[]; |
no outgoing calls
no test coverage detected