MCPcopy Create free account
hub / github.com/MiniMax-AI/OpenRoom / toPascalCase

Function toPascalCase

apps/webuiapps/src/lib/appGeneratorPlugin.ts:45–50  ·  view source on GitHub ↗
(s: string)

Source from the content-addressed store, hash-verified

43}
44
45function toPascalCase(s: string): string {
46 return s
47 .split(/[-_\s]+/)
48 .map((w) => w.charAt(0).toUpperCase() + w.slice(1).toLowerCase())
49 .join('');
50}
51
52function loadLlmConfig(configFile: string): LlmConfig {
53 try {

Callers 1

summarizeAppFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected