Add creationJoinDates.js

This commit is contained in:
SileNce5k 2021-02-18 05:04:41 +01:00
parent 89cbd86be9
commit 8e47ffcb14
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

55
util/creationJoinDates.js Normal file
View file

@ -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 };
}