1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00
.profile/utils/getAge.ts
2022-02-20 15:12:10 +01:00

17 lines
454 B
TypeScript

export const DIVLO_BIRTHDAY = new Date('2003-03-31')
/**
* Calculates the age of a person based on their birth date
* @param birthDate
* @returns
*/
export const getAge = (birthDate: Date): number => {
const today = new Date()
let age = today.getFullYear() - birthDate.getFullYear()
const month = today.getMonth() - birthDate.getMonth()
if (month < 0 || (month === 0 && today.getDate() < birthDate.getDate())) {
age--
}
return age
}