(snippet: SnippetResult | undefined)
| 217 | } |
| 218 | |
| 219 | function matched(snippet: SnippetResult | undefined): boolean { |
| 220 | return snippet?.matchLevel !== undefined && snippet.matchLevel !== 'none'; |
| 221 | } |
| 222 | |
| 223 | function extractPackageNameFromUrl(url: string): string | null { |
| 224 | const extractedSegment = url.match(/\/api\/(.*)\/.*#?/); |
no outgoing calls
no test coverage detected
searching dependent graphs…