MCPcopy
hub / github.com/mcnamee/react-native-starter-kit / ucfirst

Function ucfirst

src/lib/string.js:6–12  ·  view source on GitHub ↗
(string)

Source from the content-addressed store, hash-verified

4 * @return {str}
5 */
6export const ucfirst = (string) => {
7 if (!string) {
8 return '';
9 }
10
11 return string.charAt(0).toUpperCase() + string.slice(1);
12};
13
14/**
15 * Uppercase the first letter in a string

Callers 2

string.test.jsFile · 0.90
transformFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected