blob: be4fc1c34665cd4d8ca505ae41b2dc701e1f3471 (
plain)
1
2
3
4
5
|
// This file doesn't really exist, but it doesn't matter, a "PermissionsDenied" error should be thrown.
const code = `import "file:///${
Deno.build.os == "windows" ? "C:/" : ""
}local_file.ts";`;
await import(`data:application/javascript;base64,${btoa(code)}`);
|