Replace all non-space chars with meow

This commit is contained in:
Eric Rosenbaum 2018-12-14 17:28:45 -05:00
parent dfd4735871
commit 3bfc422ce0

View file

@ -465,7 +465,7 @@ class Scratch3Text2SpeechBlocks {
// @todo localize this? // @todo localize this?
if (state.voiceId === KITTEN_ID) { if (state.voiceId === KITTEN_ID) {
words = words.replace(/\w+/g, 'meow'); words = words.replace(/\S+/g, 'meow');
} }
// Build up URL // Build up URL