Skip to content

Commit aa799c5

Browse files
remove useless await
1 parent 2dbc286 commit aa799c5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/parser.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,10 @@ const createParser = () => {
183183
progressBar.start(apiDocs.length, 0);
184184

185185
const resolvedApiDocEntries = await Promise.all(
186-
apiDocs.map(async apiDoc => {
186+
apiDocs.map(apiDoc => {
187187
progressBar.increment();
188-
return await parseApiDoc(apiDoc);
188+
189+
return parseApiDoc(apiDoc);
189190
})
190191
);
191192

0 commit comments

Comments
 (0)