opengsstec / src /utils /account-id.ts
OpenClaw Deploy
Deploy OpenClaw to Hugging Face
c1243f9
export function normalizeAccountId(value?: string): string | undefined {
if (typeof value !== "string") {
return undefined;
}
const trimmed = value.trim();
return trimmed || undefined;
}