formatting

This commit is contained in:
Kyle Spearrin 2017-11-01 11:41:12 -04:00
parent 6086bf5812
commit d94c6de6f1
1 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@ enum Browser {
Chrome = 2,
Firefox = 3,
Opera = 4,
Edge= 5,
Edge = 5,
}
const AnalyticsIds = {
@ -228,7 +228,7 @@ export default class UtilsService {
saveObjToStorage(key: string, obj: any) {
return new Promise((resolve) => {
chrome.storage.local.set({[key]: obj}, () => {
chrome.storage.local.set({ [key]: obj }, () => {
resolve();
});
});