blob: 4808bc57b7aaa34b16618c4b7591eedec08e1f58 (
plain)
1
2
3
4
|
// This file doesn't really exist, but it doesn't matter, a "PermissionsDenied" error should be thrown.
const code = `import "https://example.com/some/file.ts";`;
const blob = new Blob([code]);
new Worker(URL.createObjectURL(blob), { type: "module" });
|