mirror of
https://github.com/skidoodle/albert.lol.git
synced 2026-04-29 03:37:41 +02:00
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
export default function age () {
|
|
return Math.floor(
|
|
(new Date().getTime() - new Date('2004-07-22').getTime()) /
|
|
(1000 * 60 * 60 * 24 * 365.25),
|
|
);
|
|
}
|