MCPcopy Create free account
hub / github.com/TanStack/devtools / uppercaseFirstLetter

Function uppercaseFirstLetter

packages/devtools/src/utils/sanitize.ts:10–11  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

8}
9
10export const uppercaseFirstLetter = (value: string) =>
11 value.charAt(0).toUpperCase() + value.slice(1)
12
13export const getAllPermutations = <T extends any>(arr: Array<T>) => {
14 const res: Array<Array<T>> = []

Callers 2

sanitize.test.tsFile · 0.90
makeModifierArrayFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected