Skip to content

Commit

Permalink
fix: change invalid left-hadn side in assignment in Angular
Browse files Browse the repository at this point in the history
  • Loading branch information
michelonsouza committed Oct 25, 2023
1 parent 9b5f0c6 commit 98c86f4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/async-encrypt-storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 98c86f4

Please sign in to comment.