From 7c809419f8164c659d99338134ffde662e27f7c2 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Sat, 11 Jan 2020 14:48:17 -0500 Subject: [PATCH] Formatting changes --- SB.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SB.js b/SB.js index df833a05..c17d6a31 100644 --- a/SB.js +++ b/SB.js @@ -78,8 +78,8 @@ function decodeStoredItem(data) { try { let str = JSON.parse(data); - if(!Array.isArray(str)) return data; - return new Map(str); + if(!Array.isArray(str)) return data; + return new Map(str); } catch(e) { // If all else fails, return the data @@ -115,7 +115,7 @@ function configProxy() { }, deleteProperty(obj, prop) { - chrome.storage.sync.remove(key); + chrome.storage.sync.remove(key); } };