Created
November 19, 2022 19:08
-
-
Save spac3unit/8cc9719027f4b0ce003e8a0776f40a7b to your computer and use it in GitHub Desktop.
Revisions
-
spac3unit created this gist
Nov 19, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ export const Every = { second: "* * * * * *", minute: "* * * * *", minutes15: "*/15 * * * *", halfHour: "*/30 * * * *", hour: "0 * * * *", twelveHours: "0 */12 * * *", day: "0 0 * * *", //At 00:00 weekDay: "0 0 * * 1-5", //Monday to Friday. weekend: "0 0 * * 6,0", //Saturday and Sunday week: "0 0 * * 0", month: "0 0 1 * *", otherMonth: "0 0 1 */2 *", quarter: "0 0 1 */3 *", sixMonth: "0 0 1 */6 *", year: "0 0 1 1 *" }