(state, getters)
| 97 | }, |
| 98 | |
| 99 | getAllSounds (state, getters) { |
| 100 | const sounds = [] |
| 101 | for (const track of Object.keys(state.tracks)) { |
| 102 | sounds.push(...getters.getTrackSounds(track)) |
| 103 | } |
| 104 | |
| 105 | return sounds |
| 106 | } |
| 107 | }, |
| 108 | |
| 109 | actions: { |
nothing calls this directly
no outgoing calls
no test coverage detected