Files
openclaw/src/shared/assistant-identity-values.ts
2026-04-07 09:44:53 +01:00

16 lines
369 B
TypeScript

import { normalizeOptionalString } from "./string-coerce.js";
export function coerceIdentityValue(
value: string | undefined,
maxLength: number,
): string | undefined {
const trimmed = normalizeOptionalString(value);
if (!trimmed) {
return undefined;
}
if (trimmed.length <= maxLength) {
return trimmed;
}
return trimmed.slice(0, maxLength);
}