(word: string, count: number, append = 's')
| 62 | }; |
| 63 | |
| 64 | export const pluralize = (word: string, count: number, append = 's') => |
| 65 | `${word}${count === 1 ? '' : append}`; |
| 66 | |
| 67 | export const concatStrings = ( |
| 68 | strings: Array<string | null | undefined>, |
no outgoing calls
no test coverage detected