mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-07-10 01:29:17 +00:00
3 lines
102 B
TypeScript
3 lines
102 B
TypeScript
export function trimDialogLabel(label: string): string {
|
||
return label.replace(/[::\s]+$/u, '');
|
||
}
|