Skip to content

Commit

Permalink
feat(location): add en_IE postcodes (#2149)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmayer committed Jun 19, 2023
1 parent e86f3b6 commit e92c313
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/locales/en_IE/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ import type { LocationDefinition } from '../../..';
import city_pattern from './city_pattern';
import county from './county';
import default_country from './default_country';
import postcode from './postcode';
import street_pattern from './street_pattern';

const location: LocationDefinition = {
city_pattern,
county,
default_country,
postcode,
street_pattern,
};

Expand Down
16 changes: 16 additions & 0 deletions src/locales/en_IE/location/postcode.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
export default [
'A## ****',
'D## ****',
'E## ****',
'F## ****',
'H## ****',
'K## ****',
'N## ****',
'P## ****',
'R## ****',
'T## ****',
'V## ****',
'W## ****',
'X## ****',
'Y## ****',
];

0 comments on commit e92c313

Please sign in to comment.