diff options
| author | Joel Kronqvist <joelkronqvist@proton.me> | 2023-06-21 13:01:57 +0300 | 
|---|---|---|
| committer | Joel Kronqvist <joelkronqvist@proton.me> | 2023-06-21 13:01:57 +0300 | 
| commit | 529477dc21ec03842ac55a2719b0875133d2aa43 (patch) | |
| tree | dc45521555cfd16407f1b712507556014d0cde8d /Functions | |
| parent | 9760c6242572f6ed17890b84ec3d14fa414b7579 (diff) | |
| parent | d10272298acb4d6e07fb5b73dd7af06d653afd7b (diff) | |
| download | LYLLRuoka-529477dc21ec03842ac55a2719b0875133d2aa43.tar.gz LYLLRuoka-529477dc21ec03842ac55a2719b0875133d2aa43.zip  | |
Merge master branches of GitHub repo and server repo
Diffstat (limited to 'Functions')
| -rw-r--r-- | Functions/dateFuncs.js | 12 | 
1 files changed, 7 insertions, 5 deletions
diff --git a/Functions/dateFuncs.js b/Functions/dateFuncs.js index 1c8a9df..feda2d9 100644 --- a/Functions/dateFuncs.js +++ b/Functions/dateFuncs.js @@ -5,14 +5,14 @@ function stringToDate(s) {  }  const isBetweenDates = (date, date1, date2) => { -    date = approxDate(date); -    date1 = approxDate(date1); -    date2 = approxDate(date2); +    date = floorDate(date); +    date1 = floorDate(date1); +    date2 = floorDate(date2);      return ((date.getTime() >= date1.getTime())      && (date.getTime() <= date2.getTime()));  }; -function approxDate(d) +function floorDate(d)  {      return new Date(`${d.getFullYear()}-${(d.getMonth() + 1).toString().padStart(2, "0")}-${d.getDate().toString().padStart(2, "0")}`);  } @@ -46,7 +46,9 @@ function run_at_monday_mornings(func) {  	days_to_elapse = 8 - weekday;  	ms_to_elapse = ms_in_h * (  		days_to_elapse * 24/*hours in a day*/ -		- hour + 1.5 // removes unneccessary hours so that we update it at 1:30 am +		- hour + 1.5 // removes unneccessary hours so that we update it at 1:30 am just +			     //in case the foods aren't updated instantly to the city's +			     // servers.  	);  	setTimeout(() => run_at_monday_mornings(func), ms_to_elapse);  | 
