Remove unnecessary semicolon

This commit is contained in:
Lorenz Hübschle-Schneider 2018-03-18 10:15:09 +01:00
parent cc26260e50
commit 0637882a4b
1 changed files with 1 additions and 1 deletions

View File

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