Files
Tarokka/constants/time.ts
Gavin McDonald 2e2399a58b we need 'this'
2025-04-22 08:01:26 -04:00

5 lines
126 B
TypeScript

export const SECOND = 1000;
export const MINUTE = 60 * SECOND;
export const HOUR = 60 * MINUTE;
export const DAY = 24 * HOUR;