Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
23
export
function
titleCase(original: string): string {
24
return
original
25
.split(
" "
)
26
.map((word) => word[0].toUpperCase() + word.slice(1))
27
.join(
" "
);
28
}
Callers
1
topicToTitle
Function · 0.90
Calls
1
slice
Method · 0.80
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…