dhruvkb/portfolio-spa

Refactor the terminal Vuex module

dhruvkb opened this issue · 1 comments

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.

This has been implement in 8f1bed5.