(text: string)
| 57 | } |
| 58 | |
| 59 | function sanitizeJsDocText(text: string): string { |
| 60 | return text.trim().replace(/\*\//g, "* /"); |
| 61 | } |
| 62 | |
| 63 | function tsDocCommentText(text: string): string { |
| 64 | const lines = sanitizeJsDocText(text).split(/\r?\n/); |
no outgoing calls
no test coverage detected
searching dependent graphs…