MCPcopy Create free account
hub / github.com/Superflows-AI/superflows / snakeToCamel

Function snakeToCamel

lib/utils.ts:578–582  ·  view source on GitHub ↗
(str: string)

Source from the content-addressed store, hash-verified

576}
577
578export function snakeToCamel(str: string): string {
579 return str.replace(/(_\w)/g, function (m: string): string {
580 return m[1].toUpperCase();
581 });
582}
583
584export function roughSizeOfObject(object: object): number {
585 /** Gets the rough memory size of the object in bytes. **/

Callers 13

EditFilteringModalFunction · 0.90
VerifyQuestionScreenFunction · 0.90
filterActionsFunction · 0.90
combineSelectedFunctionsFunction · 0.90
actionFilteringPromptFunction · 0.90
parseGeneratedCodeFunction · 0.90
CassiusFunction · 0.90
executeMessagesFunction · 0.90
getActionTSSignatureFunction · 0.90
getFunctionCallCodeFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected