Skip to content

Instantly share code, notes, and snippets.

@mdobson
Created October 9, 2014 01:27
Show Gist options
  • Save mdobson/ddad384befb3781afe98 to your computer and use it in GitHub Desktop.
Save mdobson/ddad384befb3781afe98 to your computer and use it in GitHub Desktop.
Voice.prototype.say = function(words, voice, rate) {
var marshalledVoice;
if(typeof voice === 'string') {
marshalledVoice = JSON.parse(voice);
}else {
marshalledVoice = voice;
}
//Do your logic.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment