Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightNiwrem committed Oct 7, 2023
1 parent 25f5e2b commit 9327872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform.web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const itrToStream = (itr: AsyncIterable<Uint8Array>) => {
const { readable, writable } = new TransformStream();
const writer = writable.getWriter();

writeAsyncItrToStream(itr, writer).catch((err) =>
writeAsyncItrToStream(itr, writer).catch((_err) =>
console.error("Something went wrong with writing itrToStream")
);

Expand Down

0 comments on commit 9327872

Please sign in to comment.