mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 03:43:16 +09:00
10 lines
159 B
JavaScript
10 lines
159 B
JavaScript
onmessage = function() {
|
|
try {
|
|
importScripts("evilWorker.js");
|
|
} catch(ex) {
|
|
postMessage("success");
|
|
return;
|
|
}
|
|
|
|
postMessage("failure");
|
|
};
|