Spaces:
Running
Running
| export function normalizeAccountId(value?: string): string | undefined { | |
| if (typeof value !== "string") { | |
| return undefined; | |
| } | |
| const trimmed = value.trim(); | |
| return trimmed || undefined; | |
| } | |
| export function normalizeAccountId(value?: string): string | undefined { | |
| if (typeof value !== "string") { | |
| return undefined; | |
| } | |
| const trimmed = value.trim(); | |
| return trimmed || undefined; | |
| } | |