* Return 3 random digits. Don't include 0. ex: 123, 999, 321
()
| 17 | * Return 3 random digits. Don't include 0. ex: 123, 999, 321 |
| 18 | */ |
| 19 | function getRandomDigits() { |
| 20 | return Math.floor(Math.random() * 900 + 100); |
| 21 | } |
| 22 | |
| 23 | function getNoun(language: keyof typeof languages) { |
| 24 | switch (language) { |
no outgoing calls
no test coverage detected