Skip to content

Commit 4dc75be

Browse files
committed
chore: deno fmt
1 parent d5a8dc8 commit 4dc75be

File tree

1 file changed

+3
-1
lines changed
  • crates/base/test_cases/user-worker-with-import-map

1 file changed

+3
-1
lines changed

crates/base/test_cases/user-worker-with-import-map/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ Deno.serve(async (req: Request) => {
2222
"helper-from-import-map": `./${path.join(basePath, "helper.ts")}`,
2323
},
2424
};
25-
const importMapPath = `data:${encodeURIComponent(JSON.stringify(inlineImportMap))}`;
25+
const importMapPath = `data:${
26+
encodeURIComponent(JSON.stringify(inlineImportMap))
27+
}`;
2628

2729
const worker = await EdgeRuntime.userWorkers.create({
2830
servicePath: userWorkerPath,

0 commit comments

Comments
 (0)