mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 12:11:36 +00:00
13 lines
197 B
JavaScript
13 lines
197 B
JavaScript
"use strict";
|
|
|
|
this.onmessage = function (event) {
|
|
switch (event.data) {
|
|
case "report":
|
|
reportError("reported");
|
|
break;
|
|
case "throw":
|
|
throw new Error("thrown");
|
|
break;
|
|
}
|
|
};
|