MCPcopy Index your code
hub / github.com/ionic-team/ionic-framework / capitalCase

Function capitalCase

core/src/utils/test/press-keys.ts:152–154  ·  view source on GitHub ↗

* Capitalizes the first letter of a string.

(string: string)

Source from the content-addressed store, hash-verified

150 * Capitalizes the first letter of a string.
151 */
152function capitalCase(string: string) {
153 return string.charAt(0).toUpperCase() + string.slice(1);
154}

Callers 1

pressKeysFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected