norwegian-postalcodes-mapper
v1.0.5
Published
Up to date package to map Norwegian postal codes to their respecive city names and municipality
Downloads
34
Maintainers
Readme
norwegian-postalcodes-mapper
Mapping from Norwegian postalcodes to city and municipality. The package code is generated automatically with data fetched from https://www.bring.no/postnummerregister-ansi.txt (11.04.2024)
getPostalCodeInfo('XXXX')
will return an object with keys 'city' and 'municipality'. If postal code is unknown it will return undefined
Usage:
import { getPostalCodeInfo } from 'norwegian-postalcodes-mapper';
getPostalCodeInfo('2007')?.city // 'KJELLER'
getPostalCodeInfo('2007')?.municipality // 'LILLESTRØM'
getPostalCodeInfo('asdfhdf') // 'undefined'