MCPcopy Create free account
hub / github.com/TanStack/cli / humanizeStarterId

Function humanizeStarterId

packages/cli/src/command-line.ts:54–60  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

52}
53
54function humanizeStarterId(value: string) {
55 return value
56 .split(/[-_]/g)
57 .filter(Boolean)
58 .map((part) => part[0].toUpperCase() + part.slice(1))
59 .join(' ')
60}
61
62function isLikelyStarterUrlOrPath(value: string) {
63 return (

Callers 1

listTemplateChoicesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected