OpenClawBot / src /utils /account-id.ts
darkfire514's picture
Upload 2526 files
fb4d8fe verified
export function normalizeAccountId(value?: string): string | undefined {
if (typeof value !== "string") {
return undefined;
}
const trimmed = value.trim();
return trimmed || undefined;
}