diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..e7c8e66 Binary files /dev/null and b/.DS_Store differ diff --git a/package.json b/package.json index e3b7755..aa76b0e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "encrypt-storage", - "version": "2.12.16", + "version": "2.12.17", "description": "Wrapper for encrypted localStorage and sessionStorage in browser", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/async-encrypt-storage.ts b/src/async-encrypt-storage.ts index 5621dfa..d436050 100644 --- a/src/async-encrypt-storage.ts +++ b/src/async-encrypt-storage.ts @@ -92,5 +92,5 @@ if (window) { /* istanbul ignore next */ if (window && window?.globalThis) { /* istanbul ignore next */ - (window?.globalThis as any).AsyncEncryptStorage = AsyncEncryptStorage; + (window.globalThis as any).AsyncEncryptStorage = AsyncEncryptStorage; }