Created
June 11, 2020 17:47
-
-
Save chinchang/f33158b47c38135c19ebec867491a82e to your computer and use it in GitHub Desktop.
relative time format
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
new Intl.RelativeTimeFormat('en', { | |
style: 'narrow' | |
}).format(-10, 'day') | |
// "10 days ago" | |
new Intl.RelativeTimeFormat('en', { | |
style: 'narrow' | |
}).format(10, 'day') | |
// "in 10 days" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment