Last active
December 29, 2024 18:02
-
-
Save progrium/6b0a6bc1d91a6d297c88ddda25e66acb to your computer and use it in GitHub Desktop.
Intl.DateTimeFormat is kinda nutty with custom format strings, this makes it sane
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function dateTimeFormat(timestamp, locale, str, ...opts) { | |
const d = new Date(timestamp); | |
return str.replace(/{(\d+)}/g, function(match, number) { | |
return typeof opts[number] != 'undefined' | |
? new Intl.DateTimeFormat(locale, opts[number]).format(d) | |
: match; | |
}); | |
} | |
console.log(dateTimeFormat("2021-11-19T19:19:36.598071-06:00", "en", "{0} at {1}!", {dateStyle:"short"}, {timeStyle:"long"})) | |
// => "11/19/21 at 7:19:36 PM CST!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment