(ts)
| 108 | |
| 109 | /** Relative time from a unix-seconds timestamp. */ |
| 110 | export function timeAgo(ts) { |
| 111 | return relativeTime(Date.now() / 1000 - Number(ts)); |
| 112 | } |
| 113 | |
| 114 | /** Relative time from an ISO string; future timestamps read "unknown". */ |
| 115 | export function isoTimeAgo(iso) { |
no test coverage detected