Remove unnecessary semicolon

This commit is contained in:
Lorenz Hübschle-Schneider 2018-03-18 10:15:09 +01:00
parent cc26260e50
commit 0637882a4b

View file

@ -12,7 +12,7 @@ function StoragePolyfil() {
return this.keyIndex.length; return this.keyIndex.length;
} }
}); });
}; }
StoragePolyfil.prototype.key = function(idx) { StoragePolyfil.prototype.key = function(idx) {
return this.keyIndex[idx]; return this.keyIndex[idx];
}; };