(contents: string)
| 22 | const STRING_ARRAY: ReadonlyArray<string> = []; |
| 23 | |
| 24 | export function extract(contents: string): string { |
| 25 | const match = contents.match(docblockRe); |
| 26 | return match ? match[0].trimStart() : ''; |
| 27 | } |
| 28 | |
| 29 | export function strip(contents: string): string { |
| 30 | const matchResult = contents.match(docblockRe); |
no test coverage detected