iana-tz-json-generator-and-importer
Version:
Quickly get timezone names and metadata from the IANA into your application in the format you want.
11 lines • 346 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatLocation = void 0;
function formatLocation(location) {
const displayName = location
.replace('/', ' - ')
.replace('_', ' ');
return displayName;
}
exports.formatLocation = formatLocation;
//# sourceMappingURL=format-location.js.map