MCPcopy Create free account
hub / github.com/sequelize/sequelize-typescript / capitalize

Function capitalize

src/shared/string.ts:4–6  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

2 * Capitalize specified string value
3 */
4export function capitalize(value: string): string {
5 return value.charAt(0).toUpperCase() + value.substr(1, value.length);
6}

Callers 9

string.spec.tsFile · 0.90
$addFunction · 0.90
$setFunction · 0.90
$getFunction · 0.90
$countFunction · 0.90
$createFunction · 0.90
$hasFunction · 0.90
$removeFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…