MCPcopy Create free account
hub / github.com/Gan-Xing/CodexBridge / normalizeThreadTitle

Function normalizeThreadTitle

src/core/bridge_session_service.ts:863–866  ·  view source on GitHub ↗
(value: string | null | undefined)

Source from the content-addressed store, hash-verified

861}
862
863function normalizeThreadTitle(value: string | null | undefined): string | null {
864 const normalized = typeof value === 'string' ? value.trim() : '';
865 return normalized || null;
866}
867
868function createNextDefaultThreadTitle(titles: Array<string | null | undefined>): string {
869 let max = 0;

Callers 3

createSessionForScopeMethod · 0.85
createDetachedSessionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected