We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a40173 commit fdddfa6Copy full SHA for fdddfa6
1 file changed
src/build.ts
@@ -51,7 +51,7 @@ async function emitFlavor(
51
mergeNamesakes(exposed);
52
exposed.events = webidl.events;
53
54
- const result = await emitWebIdl(
+ const result = emitWebIdl(
55
exposed,
56
options.global[0],
57
"",
@@ -63,7 +63,7 @@ async function emitFlavor(
63
result,
64
);
65
66
- const iterators = await emitWebIdl(
+ const iterators = emitWebIdl(
67
68
69
"sync",
@@ -75,7 +75,7 @@ async function emitFlavor(
75
iterators,
76
77
78
- const asyncIterators = await emitWebIdl(
+ const asyncIterators = emitWebIdl(
79
80
81
"async",
0 commit comments