(state)
| 22 | mutations: { |
| 23 | addPageError(state, error) { return state.pageErrors.push(error); }, |
| 24 | clearPageErrors(state) { return state.pageErrors = []; }, |
| 25 | addLocaleLoaded(state, localeCode) { |
| 26 | const addition = {}; |
| 27 | addition[localeCode] = true; |
nothing calls this directly
no outgoing calls
no test coverage detected