Skip to content

Instantly share code, notes, and snippets.

View acanturgut's full-sized avatar

Can Turgut acanturgut

View GitHub Profile
@acanturgut
acanturgut / sweden_geo_area.ts
Last active October 16, 2025 08:49
Sweden geo area from zip
export function getGeoAreaFromZipCode(zipCode: string): string | undefined {
try {
zipCode = zipCode.replace(/\s/g, '')
if (zipCode.length !== 5) return
const areaIndicator = zipCode.substring(0, 2)
return Object.keys(SWEDEN_GEO_AREAS).find((e) => SWEDEN_GEO_AREAS[e].includes(areaIndicator))
} catch (e) {