(snippet: SnippetResult | undefined)
| 231 | } |
| 232 | |
| 233 | function matched(snippet: SnippetResult | undefined): boolean { |
| 234 | return snippet?.matchLevel !== undefined && snippet.matchLevel !== 'none'; |
| 235 | } |
| 236 | |
| 237 | function extractPackageNameFromUrl(url: string): string | null { |
| 238 | const extractedSegment = url.match(/\/api\/(.*)\/.*#?/); |
no outgoing calls
no test coverage detected