Refactor the terminal Vuex module
dhruvkb opened this issue · 1 comments
dhruvkb commented
Currently the Vuex module for the terminal uses old style functions
name: function (argOne) {
return function (argTwo) {
...
}
}
which should, for reasons such as terseness and readability, be replaced with
name: argOne => argTwo => {
...
}
across all getters and mutations, essentially the entire module.