This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Language | Name | Identifier | Quality | |
---|---|---|---|---|
ar-001 | Majed | com.apple.voice.compact.ar-001.Maged | Default | |
bg-BG | Daria | com.apple.voice.compact.bg-BG.Daria | Default | |
ca-ES | Montse | com.apple.voice.compact.ca-ES.Montserrat | Default | |
cs-CZ | Zuzana | com.apple.voice.compact.cs-CZ.Zuzana | Default | |
da-DK | Sara | com.apple.voice.compact.da-DK.Sara | Default | |
de-DE | Anna | com.apple.voice.compact.de-DE.Anna | Default | |
de-DE | Eddy | com.apple.eloquence.de-DE.Eddy | Default | |
de-DE | Flo | com.apple.eloquence.de-DE.Flo | Default | |
de-DE | Grandma | com.apple.eloquence.de-DE.Grandma | Default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Takes n arguments and returns them in a ; -delimited row. | |
* @param args Arguments to return in the row | |
*/ | |
function csv_row(...args){ | |
return args.reduce((a,v) => a += `${v};`,'\n'); | |
} |