(count: number, str: string)
| 3 | * otherwise the string is returned |
| 4 | */ |
| 5 | export const plural = (count: number, str: string): string => (count === 1 ? str : `${str}s`) |
| 6 | |
| 7 | export const generateUuid = (length = 24): string => { |
| 8 | const possible = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" |
no outgoing calls
no test coverage detected