(word: string, count: number, append = 's')
| 56 | }; |
| 57 | |
| 58 | export const pluralize = (word: string, count: number, append = 's') => |
| 59 | `${word}${count === 1 ? '' : append}`; |
| 60 | |
| 61 | export const concatStrings = ( |
| 62 | strings: Array<string | null | undefined>, |
no outgoing calls
no test coverage detected