UNPKG

iana-tz-json-generator-and-importer

Version:

Quickly get timezone names and metadata from the IANA into your application in the format you want.

7 lines (6 loc) 174 B
export function formatLocation(location: string): string { const displayName = location .replace('/', ' - ') .replace('_', ' '); return displayName }