()
| 12 | * @returns {{}} |
| 13 | */ |
| 14 | const buildStores = () => { |
| 15 | const output = {}; |
| 16 | |
| 17 | Object.keys(modules) |
| 18 | .filter((key) => Boolean(modules[key].store)) |
| 19 | .forEach((key) => { |
| 20 | output[key] = modules[key].store; |
| 21 | }); |
| 22 | |
| 23 | return output; |
| 24 | }; |
| 25 | |
| 26 | /** |
| 27 | * Creates/Sets the Vuex store |
no test coverage detected