mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-25 22:21:03 +10:00
* create comment * reply to comment thread * edit comment * delete comment * resolve comment
6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
import { formatDistanceStrict } from 'date-fns';
|
|
|
|
export function timeAgo(date: Date){
|
|
return formatDistanceStrict(new Date(date), new Date(), { addSuffix: true })
|
|
}
|