You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constcreateWorker=(f)=>{constcode=f.toString();// console.log('code', code)constblob=newBlob([`(${code})()`])// console.log('blob', blob)returnnewWorker(URL.createObjectURL(blob))}constworkForWorker=()=>{self.addEventListener('message',e=>{console.log('my name is ',e.data)postMessage(e.data)})}constworker=createWorker(workForWorker);worker.postMessage('zerozoo');// my name is zerozoo
The text was updated successfully, but these errors were encountered:
zerozoo-a
changed the title
singlefile worker for frontend
worker blob url example
Sep 18, 2023
브라우저의 대기 탭에선 에러가 발생 할 수 있습니다.
The text was updated successfully, but these errors were encountered: