Files
wlan-cloud-ui/app/constants/time_ranges.js
Sean Macfarlane 63b392d73d redux setup
2020-03-11 11:28:29 -04:00

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;