mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
966ce7de8a
This commit adds blob URL support. Blob URLs are stored in a process global storage, that can be accessed from all workers, and the module loader. Blob URLs can be created using `URL.createObjectURL` and revoked using `URL.revokeObjectURL`. This commit does not add support for `fetch`ing blob URLs. This will be added in a follow up commit.
4 lines
217 B
Text
4 lines
217 B
Text
error: Uncaught (in promise) TypeError: invalid URL: relative URL with a cannot-be-a-base base
|
|
const a = await import(url);
|
|
^
|
|
at async file://[WILDCARD]/cli/tests/import_blob_url_import_relative.ts:6:11
|