This commit is contained in:
ThatOneCalculator 2022-07-25 13:57:13 -07:00
parent fbd42f5c76
commit 6bf10ccfbc

View File

@ -1,7 +1,9 @@
export const MAX_NOTE_TEXT_LENGTH = 3000;
export const SECOND = 1000;
export const SEC = 1000;
export const MINUTE = 60 * SEC;
export const MIN = 60 * SEC;
export const HOUR = 60 * MIN;
export const DAY = 24 * HOUR;