Skip to content

Instantly share code, notes, and snippets.

@leny
Last active July 14, 2018 10:12
Show Gist options
  • Save leny/03b382dc40ff11507ce058ceb8dabf60 to your computer and use it in GitHub Desktop.
Save leny/03b382dc40ff11507ce058ceb8dabf60 to your computer and use it in GitHub Desktop.
const getReadableAddress = (address) => {
if (address.street && address.number && address.zip) {
return [
`${address.street} ${address.number}`,
`${address.zip} ${address.city}`,
address.country,
].join("\n");
}
return `${address.city} (${address.country})`;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment