diff options
| author | Matt Wheatley <[email protected]> | 2016-01-18 15:15:10 +0000 |
|---|---|---|
| committer | Matt Wheatley <[email protected]> | 2016-01-18 15:15:10 +0000 |
| commit | 4e3cb55cbbc923fc3b915fd696f5de9a3d85f1f8 (patch) | |
| tree | 1e4ae2728fc27a72ea507ccf8eaa085f9785d9ef /lib | |
| parent | 322a2ad47757514bd381819f44e8d3bc857b55e1 (diff) | |
| download | faker-4e3cb55cbbc923fc3b915fd696f5de9a3d85f1f8.tar.xz faker-4e3cb55cbbc923fc3b915fd696f5de9a3d85f1f8.zip | |
[Locale: en_GB] Added basic support for generating UK postcodes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/locales/en_GB/address/index.js | 1 | ||||
| -rw-r--r-- | lib/locales/en_GB/address/postcode.js | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lib/locales/en_GB/address/index.js b/lib/locales/en_GB/address/index.js index b74d7d97..2790f836 100644 --- a/lib/locales/en_GB/address/index.js +++ b/lib/locales/en_GB/address/index.js @@ -3,3 +3,4 @@ module['exports'] = address; address.county = require("./county"); address.uk_country = require("./uk_country"); address.default_country = require("./default_country"); +address.postcode = require("./postcode"); diff --git a/lib/locales/en_GB/address/postcode.js b/lib/locales/en_GB/address/postcode.js new file mode 100644 index 00000000..29ae3ee5 --- /dev/null +++ b/lib/locales/en_GB/address/postcode.js @@ -0,0 +1,4 @@ +module["exports"] = [ + "??# #??", + "??## #??", +]; |
