(url: string, baseUrl: string)
| 49 | ); |
| 50 | |
| 51 | const absolutizeImportUrl = (url: string, baseUrl: string): string => |
| 52 | /^https?:\/\//.test(url) ? url : new URL(url, baseUrl).href; |
| 53 | |
| 54 | const getMappedImportUrl = ( |
| 55 | specifier: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…