source: src/utils/create-full-address.ts@ 057453c

main
Last change on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago

feat: implement employees

  • Property mode set to 100644
File size: 660 bytes
Line 
1import { Address } from 'src/schemas';
2
3export function createFullAddress(data: Address): string {
4 const { street, city, state, zip, country } = data;
5
6 const components = [street];
7
8 // Combine city, state, and zip with appropriate commas
9 const cityStateZip = [];
10 if (city) cityStateZip.push(city);
11 if (state) cityStateZip.push(state);
12 if (zip) cityStateZip.push(zip);
13
14 if (cityStateZip.length) {
15 components.push(cityStateZip.join(', ')); // Use comma-space for separation within this group
16 }
17
18 if (country) components.push(country);
19
20 return components.join('\n').trim(); // Use just a newline for separation between major components
21}
Note: See TracBrowser for help on using the repository browser.