Skip to content

Commit

Permalink
Merge pull request #34 from Fasguy/dev
Browse files Browse the repository at this point in the history
v1.2.0
  • Loading branch information
Fasguy authored Mar 17, 2023
2 parents e8cc9a8 + 9536671 commit c9a5ab8
Show file tree
Hide file tree
Showing 134 changed files with 6,548 additions and 6,760 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ko_fi: fasguy
11 changes: 6 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
"styles": [
"projects/toolbox-main/src/styles.scss"
],
"scripts": []
"scripts": [],
"webWorkerTsConfig": "projects/toolbox-main/tsconfig.worker.json"
},
"configurations": {
"production": {
Expand Down Expand Up @@ -204,8 +205,8 @@
}
}
}
},
"cli": {
"analytics": false
}
},
"cli": {
"analytics": false
}
}
4 changes: 2 additions & 2 deletions lib/fflate-zip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ export class fflateZip {

this._zipOut.push(dat);
if (final) {
this._resolve(new Blob(this._zipOut, { type: 'application/zip' }));
this._resolve(new Blob(this._zipOut, { type: "application/zip" }));
}
}
}

public add(name: string, data: string | Uint8Array | object): void {
if (this._finalized) {
throw new Error('Cannot add data after finalization');
throw new Error("Cannot add data after finalization");
}

let file = new ZipDeflate(name, { level: this.compressionLevel });
Expand Down
Loading

0 comments on commit c9a5ab8

Please sign in to comment.