(state, soundId)
| 38 | }, |
| 39 | |
| 40 | removeSound (state, soundId) { |
| 41 | for (const track of Object.keys(state.tracks)) { |
| 42 | state.tracks[track].delete(soundId) |
| 43 | } |
| 44 | }, |
| 45 | |
| 46 | setMute (state, { track, muted }) { |
| 47 | state.muted[track] = muted |
nothing calls this directly
no outgoing calls
no test coverage detected