(n: number)
| 129 | modifyLastString(arrOrStr, (str: string) => str === '' ? undefined : str) |
| 130 | |
| 131 | export const numberToPascalCaseWords = (n: number) => { |
| 132 | const words = toWords(n).split("-"); |
| 133 | return words |
| 134 | .map((word) => word[0].toUpperCase().concat(word.slice(1))) |
| 135 | .join(""); |
| 136 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected