blob: 865c1777a963325e0102576aa48ce4edff02d26b (
plain)
1
2
3
4
5
6
|
// This file doesn't really exist, but it doesn't matter, a "NotCapable" error should be thrown.
const code = `import "file:///${
Deno.build.os == "windows" ? "C:/" : ""
}local_file.ts";`;
const blob = new Blob([code]);
await import(URL.createObjectURL(blob));
|