(line: string)
| 57 | } |
| 58 | |
| 59 | function isComment(line: string): boolean { |
| 60 | line = line.trim(); |
| 61 | return line.startsWith('//') || line.startsWith('/**') || line.startsWith('*'); |
| 62 | } |
| 63 | |
| 64 | async function resolveComment(dir: string, ref: string, section: string): Promise<string[]> { |
| 65 | const fileReadme = join(dir, ref); |
no outgoing calls
no test coverage detected
searching dependent graphs…