Remove whitespace

This commit is contained in:
SileNce5k 2021-07-24 19:44:12 +02:00
parent be52c11691
commit 41734e7412
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -1,6 +1,3 @@
module.exports = function (date){
return date.getUTCFullYear() + '-' + ('0' + (date.getUTCMonth()+1)).slice(-2) + '-' + ('0' + date.getUTCDate()).slice(-2)+" "+('0' + date.getUTCHours()).slice(-2)+":"+('0' + date.getUTCMinutes()).slice(-2)+":"+('0'+date.getUTCSeconds()).slice(-2);
}
}