mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-07-20 22:29:28 +00:00
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
onmessage = function() {
|
|
try {
|
|
importScripts("evilWorker.js");
|
|
} catch(ex) {
|
|
postMessage("success");
|
|
return;
|
|
}
|
|
|
|
postMessage("failure");
|
|
};
|