Give a brief description of what this PR does.
e.g. /src/components/SomeComponent.js
// No Security | |
{ | |
"rules": { | |
".read": true, | |
".write": true | |
} | |
} |
var voice; | |
for(v of window.speechSynthesis.getVoices()) { | |
if(v.name === 'Fred') { | |
voice = v; | |
break; | |
} | |
} | |
const utterance = new SpeechSynthesisUtterance('Fitter. Happier. More productive.'); | |
utterance.voice = voice; |
Give a brief description of what this PR does.
e.g. /src/components/SomeComponent.js