(str)
| 119 | * @returns {string | undefined} |
| 120 | */ |
| 121 | export const ucfirst = function (str) { |
| 122 | if (str) return str.charAt(0).toUpperCase() + str.substr(1) |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Make first char lowercase. |
no outgoing calls
no test coverage detected