mirror of
https://github.com/tauri-apps/deno.git
synced 2026-02-04 18:51:20 +01:00
4 lines
112 B
TypeScript
4 lines
112 B
TypeScript
const b = new Blob(['throw new Error("hello");']);
|
|
const blobURL = URL.createObjectURL(b);
|
|
new Worker(blobURL);
|