mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2025-02-16 23:06:42 +00:00
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
export const second = 1000;
|
|
export const minute = second * 60;
|
|
export const hour = minute * 60;
|
|
export const day = hour * 24;
|
|
export const week = day * 7;
|