6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
import { Address } from "./types";
|
|
|
|
export function shortAddress(a: Address): string {
|
|
if (!a) return "";
|
|
return `${a.number} ${a.street}, ${a.locality}`;
|
|
}
|