From 36d1d3a6260067708474d057281d71bf3f95daf1 Mon Sep 17 00:00:00 2001 From: Matt Mayer <152770+matthewmayer@users.noreply.github.com> Date: Sat, 17 Jun 2023 03:38:21 +0700 Subject: feat(location): add ne postcodes (#2148) --- src/locales/ne/location/index.ts | 2 ++ src/locales/ne/location/postcode.ts | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 src/locales/ne/location/postcode.ts (limited to 'src') diff --git a/src/locales/ne/location/index.ts b/src/locales/ne/location/index.ts index 6939f44e..4fd0e9be 100644 --- a/src/locales/ne/location/index.ts +++ b/src/locales/ne/location/index.ts @@ -6,6 +6,7 @@ import type { LocationDefinition } from '../../..'; import city_name from './city_name'; import city_pattern from './city_pattern'; import default_country from './default_country'; +import postcode from './postcode'; import state from './state'; import street_pattern from './street_pattern'; @@ -13,6 +14,7 @@ const location: LocationDefinition = { city_name, city_pattern, default_country, + postcode, state, street_pattern, }; diff --git a/src/locales/ne/location/postcode.ts b/src/locales/ne/location/postcode.ts new file mode 100644 index 00000000..b05a8a69 --- /dev/null +++ b/src/locales/ne/location/postcode.ts @@ -0,0 +1,2 @@ +// https://www.gpo.gov.np/Home/Postalcode +export default ['1####', '2####', '3####', '4####', '5####']; -- cgit v1.2.3