mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-11 01:18:29 +00:00
5 lines
104 B
JavaScript
5 lines
104 B
JavaScript
var w = new Worker("dedicated-worker-script.js");
|
|
w.onmessage = function (e) {
|
|
postMessage(e.data);
|
|
}
|