Skip to content

Commit

Permalink
Fix throttling. (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
j2L4e authored and daffl committed Sep 21, 2018
1 parent 464bc71 commit ca1a3b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class LocalStorage extends Service {
this._timeout = setTimeout(() => {
this._storage.setItem(this._storageKey, JSON.stringify(this.store));
delete this._timeout;
}, this.throttle);
}, this._throttle);
}

return data;
Expand Down

0 comments on commit ca1a3b5

Please sign in to comment.