MCPcopy Create free account
hub / github.com/codecombat/codecombat / removeSound

Function removeSound

app/core/store/modules/audio.js:40–44  ·  view source on GitHub ↗
(state, soundId)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected