mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-23 22:24:46 +08:00
8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
|
|
import { formatDistanceToNow } from "date-fns";
|
||
|
|
|
||
|
|
export function formatTimeAgo(date: Date | string | number) {
|
||
|
|
return formatDistanceToNow(date, {
|
||
|
|
addSuffix: true,
|
||
|
|
});
|
||
|
|
}
|