Skip to content

Commit

Permalink
chore: use directive @ts-expect-error instead of @ts-ignore (#6429)
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored Mar 7, 2023
1 parent 092b9a6 commit 8538157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/adapters/node/src/response-iterator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function readerIterator<T>(reader: ReadableStreamDefaultReader<T>): AsyncIterabl

if (canUseAsyncIteratorSymbol) {
iterator[Symbol.asyncIterator] = function (): AsyncIterator<T> {
//@ts-ignore
//@ts-expect-error
return this;
};
}
Expand Down

0 comments on commit 8538157

Please sign in to comment.