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