MCPcopy
hub / github.com/prisma/prisma / uncapitalize

Function uncapitalize

packages/client-common/src/casing.ts:13–15  ·  view source on GitHub ↗
(self: T)

Source from the content-addressed store, hash-verified

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

Callers 15

findByKeyFunction · 0.90
applyEmptySelectionErrorFunction · 0.90
buildInputValueFunction · 0.90
getGlobalOmitMethod · 0.90
jsDocMethod · 0.90
toTSWithoutNamespaceMethod · 0.90
jsdoc.tsFile · 0.90
globalOmitConfigFunction · 0.90
getMethodJSDocBodyFunction · 0.90
buildModelPayloadFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected