Skip to content

Commit

Permalink
fix: remove needless semi-colon in fromAsync.ts (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Feb 9, 2024
1 parent 2537df1 commit 41ebaa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs-lib/src/polyfills/scripts/esnext.array-fromAsync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ async function fromAsync(this: any, items: any, mapfn: any, thisArg: any) {
result.length = i;
return result;
}
};
}

if (!Array.fromAsync) {
(Array as any).fromAsync = fromAsync;
Expand Down

0 comments on commit 41ebaa7

Please sign in to comment.