Skip to content

Commit

Permalink
��Storage.prototype.keys was missing return!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
zevero committed Sep 13, 2015
1 parent 84d2081 commit 0c80d11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extendStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ Storage.prototype.has = this.hasOwnProperty;
Storage.prototype.remove = this.removeItem;

Storage.prototype.keys = function(){
Object.keys(this.valueOf());
return Object.keys(this.valueOf());
}

0 comments on commit 0c80d11

Please sign in to comment.