(doc: string)
| 25 | `; |
| 26 | |
| 27 | function normalize(doc: string): string { |
| 28 | return print(parse(doc)); |
| 29 | } |
| 30 | |
| 31 | function assertNonMaybe<T>(input: T): asserts input is Exclude<T, null | undefined> { |
| 32 | if (input == null) { |
no test coverage detected
searching dependent graphs…