Formatting changes

This commit is contained in:
Ajay Ramachandran
2020-01-11 14:48:17 -05:00
parent 4de0ae51e8
commit 7c809419f8

6
SB.js
View File

@@ -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);
}
};