We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e86f3b6 commit e92c313Copy full SHA for e92c313
src/locales/en_IE/location/index.ts
@@ -6,12 +6,14 @@ import type { LocationDefinition } from '../../..';
6
import city_pattern from './city_pattern';
7
import county from './county';
8
import default_country from './default_country';
9
+import postcode from './postcode';
10
import street_pattern from './street_pattern';
11
12
const location: LocationDefinition = {
13
city_pattern,
14
county,
15
default_country,
16
+ postcode,
17
street_pattern,
18
};
19
src/locales/en_IE/location/postcode.ts
@@ -0,0 +1,16 @@
1
+export default [
2
+ 'A## ****',
3
+ 'D## ****',
4
+ 'E## ****',
5
+ 'F## ****',
+ 'H## ****',
+ 'K## ****',
+ 'N## ****',
+ 'P## ****',
+ 'R## ****',
+ 'T## ****',
+ 'V## ****',
+ 'W## ****',
+ 'X## ****',
+ 'Y## ****',
+];
0 commit comments