1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-27 13:10:46 +00:00
Files
UXP/dom/workers/test/WorkerDebugger.postMessage_debugger.js
T

10 lines
132 B
JavaScript

"use strict"
this.onmessage = function (event) {
switch (event.data) {
case "ping":
postMessage("pong");
break;
}
};