From 8e47ffcb14a7064d4fad3de86e42f13743f41da6 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Thu, 18 Feb 2021 05:04:41 +0100 Subject: [PATCH] Add creationJoinDates.js --- util/creationJoinDates.js | 55 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 util/creationJoinDates.js diff --git a/util/creationJoinDates.js b/util/creationJoinDates.js new file mode 100644 index 0000000..b6f6939 --- /dev/null +++ b/util/creationJoinDates.js @@ -0,0 +1,55 @@ +module.exports = function (client) { + let creationDate = client.user.createdAt + let hour = creationDate.getHours().toString(); + if (hour.length == 1) { + hour = "0" + hour; + } + let minutes = creationDate.getMinutes().toString(); + if (minutes.length == 1) { + minutes = "0" + minutes; + } + let seconds = creationDate.getSeconds().toString(); + if (seconds.length == 1) { + let seconds = "0" + seconds; + } + + let month = (creationDate.getMonth() + 1).toString(); + if (month.length == 1) { + month = "0" + month; + } + + let date = creationDate.getDate().toString(); + if (date.length == 1) { + date = "0" + date; + } + creationDate = creationDate.getFullYear() + "-" + month + "-" + date + " " + hour + ":" + minutes + ":" + seconds; + + + let datejoin = user.joinedAt; + month = (datejoin.getMonth() + 1).toString(); + if (month.length == 1) { + month = "0" + month; + } + + date = datejoin.getDate().toString(); + if (date.length == 1) { + date = "0" + date; + } + + hour = datejoin.getHours().toString(); + if (hour.length == 1) { + hour = "0" + hour; + } + minutes = datejoin.getMinutes().toString(); + if (minutes.length == 1) { + minutes = "0" + minutes; + } + seconds = datejoin.getSeconds().toString(); + if (seconds.length == 1) { + seconds = "0" + seconds; + } + + let joindate = datejoin.getFullYear() + "-" + month + "-" + date + " " + hour + ":" + minutes + ":" + seconds; + + return { datecreate: creationDate, joindate: joindate }; +} \ No newline at end of file