Skip to content

Instantly share code, notes, and snippets.

@carl0smat3us
Last active May 19, 2024 12:50
Show Gist options
  • Select an option

  • Save carl0smat3us/85052d37c3815fee1f2cf574c9073e03 to your computer and use it in GitHub Desktop.

Select an option

Save carl0smat3us/85052d37c3815fee1f2cf574c9073e03 to your computer and use it in GitHub Desktop.
Publication date
import { formatDistanceToNowStrict } from 'date-fns'
import { enUs } from 'date-fns/locale'
function formatPublishedSince(date) {
try {
const publishedSince = formatDistanceToNowStrict(new Date(date), {
locale: enUs,
})
return `${publishedSince} ago`
} catch (e) {
return ''
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment