mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 14:57:32 +09:00
8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
|
|
function createWorker() {
|
||
|
|
var worker = new Worker('post-a-1.js?' + Math.random());
|
||
|
|
worker.onmessage = function(e) {
|
||
|
|
postMessage(e.data);
|
||
|
|
createWorker();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
createWorker();
|