openglobus/tests/worker.js
Thibaut Lassalle 08185015ac add unit tests
2021-10-09 16:37:15 -07:00

11 lines
184 B
JavaScript

export class Worker {
constructor(stringUrl) {
this.url = stringUrl;
this.onmessage = () => { };
}
postMessage(msg) {
this.onmessage(msg);
}
}