mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-27 12:38:55 +00:00
19 lines
239 B
JavaScript
19 lines
239 B
JavaScript
"use strict";
|
|
|
|
console.log("Log from worker init");
|
|
|
|
function f() {
|
|
var a = 1;
|
|
var b = 2;
|
|
var c = 3;
|
|
}
|
|
|
|
self.onmessage = function (event) {
|
|
if (event.data == "ping") {
|
|
f();
|
|
postMessage("pong");
|
|
}
|
|
};
|
|
|
|
postMessage("load");
|