Last active
November 8, 2019 02:25
-
-
Save t32k/9197b8166adce4d0fc636ef4897023cf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const getFormattedDate = date => { | |
return new Intl.DateTimeFormat("ja", { | |
year: "numeric", | |
month: "2-digit", | |
day: "2-digit", | |
hour: "2-digit", | |
minute: "2-digit", | |
second: "2-digit", | |
timeZone: "Asia/Tokyo" | |
}).format(date); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment