()
| 19 | } |
| 20 | |
| 21 | export function random(): string { |
| 22 | return (Math.random() * 100000000000).toString(); |
| 23 | } |
| 24 | |
| 25 | export const capitalize = (string: string) => { |
| 26 | return string.charAt(0).toUpperCase() + string.slice(1); |
nothing calls this directly
no outgoing calls
no test coverage detected