(url: string, config: Config)
| 6 | import { fileURLToPath } from 'url'; |
| 7 | |
| 8 | async function loadAsUrl(url: string, config: Config) { |
| 9 | return URL.createObjectURL(await loadAsBlob(url, config)); |
| 10 | } |
| 11 | |
| 12 | async function loadFromURI( |
| 13 | uri: URL, |
nothing calls this directly
no test coverage detected