Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
Set default quota to Infinity
Browse files Browse the repository at this point in the history
  • Loading branch information
rojvv committed Jan 27, 2024
1 parent 360177a commit bd1f91f
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": "@mtkruto/storage-local-storage",
"version": "1.0.4",
"version": "1.0.5",
"description": "",
"main": "dist/index.js",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class StorageLocalStorage extends Storage implements Storage {
}
super();
this.#prefix = prefix;
this.#localStorage = localStorage ?? new LocalStorage(".mtkruto");
this.#localStorage = localStorage ?? new LocalStorage(".mtkruto", Infinity);
}

get prefix() {
Expand Down

0 comments on commit bd1f91f

Please sign in to comment.