Skip to content

Commit

Permalink
Fix close ReadStreamTokenizer
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Jan 29, 2025
1 parent f910232 commit d70a475
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/ReadStreamTokenizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ export class ReadStreamTokenizer extends AbstractTokenizer {
return this.streamReader.abort();
}

public async close(): Promise<void> {
return this.streamReader.close();
}

supportsRandomAccess(): boolean {
return false;
}
Expand Down

0 comments on commit d70a475

Please sign in to comment.