Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 27, 2023 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/9a406dedefd804386c3fff32a72d7504 to your computer and use it in GitHub Desktop.
Save parzibyte/9a406dedefd804386c3fff32a72d7504 to your computer and use it in GitHub Desktop.
const formateadorFechasRelativas = new Intl.RelativeTimeFormat('en-US', { style: 'long', });
formateadorFechasRelativas.format(-7,'day')
//'7 days ago'
formateadorFechasRelativas.format(-7,'hour')
//'7 hours ago'
formateadorFechasRelativas.format(50,'minute')
//'in 50 minutes'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment