From 0637882a4beede900ecb70fd66472ddfcf75d10e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCbschle-Schneider?= Date: Sun, 18 Mar 2018 10:15:09 +0100 Subject: [PATCH] Remove unnecessary semicolon --- js/localstorage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/localstorage.js b/js/localstorage.js index d1d29f1..05075b3 100644 --- a/js/localstorage.js +++ b/js/localstorage.js @@ -12,7 +12,7 @@ function StoragePolyfil() { return this.keyIndex.length; } }); -}; +} StoragePolyfil.prototype.key = function(idx) { return this.keyIndex[idx]; };