blob: 938a76add5978389ed7475ba12b69c988ee4125e (
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:///local_file.ts";`;
new Worker(`data:application/javascript;base64,${btoa(code)}`, {
type: "module",
});
|