We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38707bf commit 3fb9290Copy full SHA for 3fb9290
lib/sessionManager/stores/localStorage.ts
@@ -7,6 +7,10 @@ import { splitString } from "../utils.js";
7
* @class LocalStorage
8
*/
9
export class LocalStorage<V = StorageKeys> implements SessionManager<V> {
10
+ constructor() {
11
+ console.warn("LocalStorage store should not be used in production");
12
+ }
13
+
14
setItems: Set<V | StorageKeys> = new Set<V>();
15
16
/**
0 commit comments