Browse Source

Minor stylistic update

jamesgeorge007 5 years ago
parent
commit
9481587151
1 changed files with 2 additions and 2 deletions
  1. 2 2
      store/postwoman.js

+ 2 - 2
store/postwoman.js

@@ -48,7 +48,7 @@ export const state = () => ({
 export const mutations = {
 
     applySetting (state, setting) {
-        if(setting == null || !(setting instanceof Array) || setting.length !== 2)
+        if (setting == null || !(setting instanceof Array) || setting.length !== 2)
             throw new Error("You must provide a setting (array in the form [key, value])");
 
         const [key, value] = setting;
@@ -56,7 +56,7 @@ export const mutations = {
         // Add your settings key to the SETTINGS_KEYS array at the
         // top of the file.
         // This is to ensure that application settings remain documented.
-        if(!SETTINGS_KEYS.includes(key)) throw new Error("The settings structure does not include the key " + key);
+        if (!SETTINGS_KEYS.includes(key)) throw new Error("The settings structure does not include the key " + key);
 
         state.settings[key] = value;
     }