format+lint

This commit is contained in:
Snarling 2022-08-08 14:30:14 -04:00
parent c18286b996
commit 8f8d9a1d23

@ -74,7 +74,10 @@ export async function executeJSScript(
const ns = workerScript.env.vars;
if (!loadedModule) {
throw helpers.makeRuntimeRejectMsg(workerScript, `${script.filename} cannot be run because the script module won't load`);
throw helpers.makeRuntimeRejectMsg(
workerScript,
`${script.filename} cannot be run because the script module won't load`,
);
}
// TODO: putting await in a non-async function yields unhelpful
// "SyntaxError: unexpected reserved word" with no line number information.