Files
openclaw/src/infra/outbound/target-format.ts
2026-01-17 07:34:26 +00:00

5 lines
155 B
TypeScript

export function formatTargetHint(hint?: string, withLabel = false): string {
if (!hint) return "";
return withLabel ? ` Hint: ${hint}` : ` ${hint}`;
}