JSFiddle - React, Tailwind, and code Playground
by atesgoral
JavaScript
function workerRuntime() {
console.log('Hello from worker!');
}
const workerRuntimeSrc = workerRuntime.toString();
const blob = new Blob([`(${workerRuntimeSrc})()`], { type: 'text/javascript' });
const worker = new Worker(URL.createObjectURL(blob));