Last active
May 19, 2024 12:50
-
-
Save carl0smat3us/85052d37c3815fee1f2cf574c9073e03 to your computer and use it in GitHub Desktop.
Publication date
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
| 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