From b270c4475ca6ed61784ed8368ab42fea3dc528e5 Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Wed, 9 Feb 2022 22:24:26 +0200 Subject: Merged all functions from the JoelHMikael/funcs Necessary, because we don't want to complicate our update script & its anyways better like this. They weren't any complicated functions. --- Functions/dateFuncs.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Functions/dateFuncs.js (limited to 'Functions/dateFuncs.js') diff --git a/Functions/dateFuncs.js b/Functions/dateFuncs.js new file mode 100644 index 0000000..10c4250 --- /dev/null +++ b/Functions/dateFuncs.js @@ -0,0 +1,23 @@ +// s: DD-MM-YYYY, return: Date +function stringToDate(s) { + const date = s.split("-"); + return new Date(`${date[2].padStart(4, "0")}-${date[1].padStart(2, "0")}-${date[0].padStart(2, "0")}`); +} + +const isBetweenDates = (date, date1, date2) => { + date = approxDate(date); + date1 = approxDate(date1); + date2 = approxDate(date2); + return ((date.getTime() >= date1.getTime()) + && (date.getTime() <= date2.getTime())); +}; + +function approxDate(d) +{ + return new Date(`${d.getFullYear()}-${(d.getMonth() + 1).toString().padStart(2, "0")}-${d.getDate().toString().padStart(2, "0")}`); +} + +module.exports = { + fromString: stringToDate, + between: isBetweenDates +} \ No newline at end of file -- cgit v1.2.3