nidus-sync/ts/format.ts

7 lines
159 B
TypeScript
Raw Normal View History

import { Address } from "./types";
2026-03-22 17:21:01 +00:00
export function shortAddress(a: Address): string {
if (!a) return "";
return `${a.number} ${a.street}, ${a.locality}`;
}