MCPcopy Index your code
hub / github.com/triggerdotdev/trigger.dev / titleCase

Function titleCase

packages/integration-kit/src/utils.ts:23–28  ·  view source on GitHub ↗
(original: string)

Source from the content-addressed store, hash-verified

21};
22
23export function titleCase(original: string): string {
24 return original
25 .split(" ")
26 .map((word) => word[0].toUpperCase() + word.slice(1))
27 .join(" ");
28}

Callers 1

topicToTitleFunction · 0.90

Calls 1

sliceMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…