Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jbilcke-hf
/
ai-tube
like
283
Running
App
Files
Files
Community
10
67f97d0
ai-tube
/
src
/
lib
/
formatters
/
formatTimeAgo.ts
jbilcke
working to improve the clap format
f42b4a1
9 months ago
raw
Copy download link
history
blame
Safe
163 Bytes
import
{ formatDistance }
from
'date-fns'
export
function
formatTimeAgo
(
time:
string
) {
return
formatDistance
(
new
Date
(time),
new
Date
(), {
addSuffix
:
true
})
}