(soundName)
| 684 | * @param {string} soundName file name of the audio (must be .mp3) |
| 685 | */ |
| 686 | const PlayAudio = (soundName) => { |
| 687 | new Audio("assets/sounds/"+soundName+".mp3").play(); |
| 688 | }; |
| 689 | |
| 690 | /** |
| 691 | * Opens Application |
no outgoing calls
no test coverage detected