Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
moahmedwafy
/
modarb-be
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c1fec27
modarb-be
/
src
/
lib
/
utils
/
age.ts
moahmedwafy
feat: support model creating workouts
fc659a3
10 months ago
raw
Copy download link
history
blame
Safe
179 Bytes
export
const
calcAge = (
dob
:
Date
):
number
=>
{
const
diff =
Date
.
now
() - dob.
getTime
();
const
ageDate =
new
Date
(diff);
return
Math
.
abs
(ageDate.
getUTCFullYear
() -
1970
);
}