blob: 01bff7d7a2205b69435a44229a9453e2711c0543 (
plain)
1
2
3
4
5
|
// 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";`;
await import(`data:application/javascript;base64,${btoa(code)}`);
|