Skip to content

Commit e92c313

Browse files
authored
feat(location): add en_IE postcodes (#2149)
1 parent e86f3b6 commit e92c313

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/locales/en_IE/location/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ import type { LocationDefinition } from '../../..';
66
import city_pattern from './city_pattern';
77
import county from './county';
88
import default_country from './default_country';
9+
import postcode from './postcode';
910
import street_pattern from './street_pattern';
1011

1112
const location: LocationDefinition = {
1213
city_pattern,
1314
county,
1415
default_country,
16+
postcode,
1517
street_pattern,
1618
};
1719

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export default [
2+
'A## ****',
3+
'D## ****',
4+
'E## ****',
5+
'F## ****',
6+
'H## ****',
7+
'K## ****',
8+
'N## ****',
9+
'P## ****',
10+
'R## ****',
11+
'T## ****',
12+
'V## ****',
13+
'W## ****',
14+
'X## ****',
15+
'Y## ****',
16+
];

0 commit comments

Comments
 (0)