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

Function getAllSounds

app/core/store/modules/audio.js:99–106  ·  view source on GitHub ↗
(state, getters)

Source from the content-addressed store, hash-verified

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: {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected