4 lines
120 B
JavaScript
4 lines
120 B
JavaScript
function workerMethod() {
|
|
console.log("workerMethod about to throw...");
|
|
throw new Error("Method-Throw-Payload");
|
|
}
|