mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-10-30 02:12:39 +00:00
8 lines
276 B
JavaScript
8 lines
276 B
JavaScript
export const ONE_SECOND = 1000;
|
|
export const ONE_MINUTE = 60 * ONE_SECOND;
|
|
export const ONE_HOUR = 60 * ONE_MINUTE;
|
|
export const ONE_DAY = 24 * ONE_HOUR;
|
|
export const ONE_WEEK = 7 * ONE_DAY;
|
|
export const ONE_MONTH = 4.34524 * ONE_WEEK;
|
|
export const ONE_YEAR = 12 * ONE_MONTH;
|