Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit afa0f0f

Browse files
committed
fix(decorator): remove console.log
1 parent 9ccf69a commit afa0f0f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-store",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"main": "./dist/index",
55
"typings": "./dist/index",
66
"description": "Angular decorator to save and restore class properties automatically from LocalStorage and SessionStorage.",

src/decorator/webstorage.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ function WebStorage(webStorage: Storage, service: WebStorageServiceInterface, ke
3636
},
3737
set: function(value: any) {
3838
if (!cache[key]) { // first setter handle
39-
console.log('first setter');
4039
if (isEmpty(proxy)) {
4140
// if no value in localStorage, set it to initializer
4241
proxy = WebStorageUtility.set(webStorage, key, value);

0 commit comments

Comments
 (0)