openclaw/src/utils/account-id.ts

6 lines
191 B
TypeScript

import { normalizeOptionalAccountId } from "../routing/account-id.js";
export function normalizeAccountId(value?: string): string | undefined {
return normalizeOptionalAccountId(value);
}