(self: T)
| 11 | * Converts the first character of a word to lower case. |
| 12 | */ |
| 13 | export function uncapitalize<T extends string>(self: T): Uncapitalize<T> { |
| 14 | return (self.substring(0, 1).toLowerCase() + self.substring(1)) as Uncapitalize<T> |
| 15 | } |
no outgoing calls
no test coverage detected