(url: string)
| 526 | // ============================================================================= |
| 527 | |
| 528 | export function isFileUrl(url: string): boolean { |
| 529 | return url.startsWith("file://") || url.startsWith("computer://"); |
| 530 | } |
| 531 | |
| 532 | export function isArxivUrl(url: string): boolean { |
| 533 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…