mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 06:18:38 +09:00
5 lines
110 B
JavaScript
5 lines
110 B
JavaScript
|
|
postMessage(1);
|
||
|
|
var w = new Worker('infinite-nested.js');
|
||
|
|
w.onmessage = function(e) {
|
||
|
|
postMessage(e.data);
|
||
|
|
}
|