Skip to content

Commit

Permalink
remove readonly to fix type-error, bump version to 2.4.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Nov 13, 2024
1 parent 34b0b39 commit fa6a2d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "warcio",
"version": "2.4.0-beta.2",
"version": "2.4.0-beta.3",
"keywords": [
"WARC",
"web archiving"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/statusandheaders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const decoder = new TextDecoder("utf-8");
export class StatusAndHeaders {
statusline: string;
headers: HeadersMultiMap | Headers;
private readonly reencodeHeaders?: Set<string>;
readonly reencodeHeaders?: Set<string>;

constructor({
statusline,
Expand Down

0 comments on commit fa6a2d5

Please sign in to comment.