voicePrompt.js 88B

12345678
  1. function voicePrompt (text){
  2. new Audio(text).play();
  3. }
  4. export {
  5. voicePrompt
  6. }