(arr: T[])
| 22 | `; |
| 23 | |
| 24 | function randomItem<T>(arr: T[]): T { |
| 25 | return arr[Math.floor(Math.random() * arr.length)]; |
| 26 | } |
| 27 | |
| 28 | export function randomQuote(): Quote { |
| 29 | return randomItem(words.motivationalQuotes); |
no outgoing calls
no test coverage detected