mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +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(); |