Skip to content

Commit fdddfa6

Browse files
committed
remove await
1 parent 7a40173 commit fdddfa6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/build.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async function emitFlavor(
5151
mergeNamesakes(exposed);
5252
exposed.events = webidl.events;
5353

54-
const result = await emitWebIdl(
54+
const result = emitWebIdl(
5555
exposed,
5656
options.global[0],
5757
"",
@@ -63,7 +63,7 @@ async function emitFlavor(
6363
result,
6464
);
6565

66-
const iterators = await emitWebIdl(
66+
const iterators = emitWebIdl(
6767
exposed,
6868
options.global[0],
6969
"sync",
@@ -75,7 +75,7 @@ async function emitFlavor(
7575
iterators,
7676
);
7777

78-
const asyncIterators = await emitWebIdl(
78+
const asyncIterators = emitWebIdl(
7979
exposed,
8080
options.global[0],
8181
"async",

0 commit comments

Comments
 (0)