use array destructuring approach

This commit is contained in:
jamesgeorge007
2019-09-23 23:42:07 +05:30
parent ddb86da459
commit f42e0329da

View File

@@ -51,8 +51,7 @@ export const mutations = {
if(setting == null || !(setting instanceof Array) || setting.length !== 2)
throw new Error("You must provide a setting (array in the form [key, value])");
let key = setting[0];
let value = setting[1];
const [key, value] = setting;
// Do not just remove this check.
// Add your settings key to the SETTINGS_KEYS array at the
// top of the file.