mirror of
https://github.com/cline/cline.git
synced 2026-09-21 13:21:23 +08:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
import { formatDisplayUserInput } from "@clinebot/shared/browser";
|
|
|
|
export function normalizeTitle(title?: string): string {
|
|
if (!title?.trim()) return "";
|
|
return formatDisplayUserInput(title);
|
|
}
|