aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/scripts/lib/local-store.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/scripts/lib/local-store.js b/app/scripts/lib/local-store.js
index 175126d86..5b47985f6 100644
--- a/app/scripts/lib/local-store.js
+++ b/app/scripts/lib/local-store.js
@@ -28,7 +28,7 @@ module.exports = class ExtensionStore {
return this._set(state)
}
- function _get() {
+ _get() {
const local = extension.storage.local
return new Promise((resolve, reject) => {
local.get(null, (result) => {
@@ -42,7 +42,7 @@ module.exports = class ExtensionStore {
})
}
- function _set(obj) {
+ _set(obj) {
const local = extension.storage.local
return new Promise((resolve, reject) => {
local.set(obj, () => {