INNER CODE UNIT · JavaScript
formatDate
aitradingbotspro/crypto-liquidity-ai-trading-bot · helpers/dateTime.js:18
function formatDate(timestamp) {
if (!timestamp) return false;
const formattedDate = {};
const dateObject = new Date(timestamp);
formattedDate.year = dateObject.getFullYear();
formattedDate.month = ('0' + (dateObject.getMonth() + 1)).slice(-2);
formattedDate.date = ('0' + dateObject.getDate()).slice(-2);
formattedDate.hours = ('0' + dateObject.getHours()).slice(-2);
formattedDate.minutes = ('0' + dateObject.getMinutes()).slice(-2);
formattedDate.seconds = ('0' + dateObject.getSeconds()).slice(-2);
formattedDate.YYYY_MM_DD = formattedDate.year + '-' + formattedDate.month + '-' + formattedDate.date;
formattedDate.YYYY_MM_DD_hh_mm = formattedDate.year + '-' + formattedDate.month + '-' + formattedDate.date + ' ' + formattedDate.hours + ':' + formattedDate.minutes;
formattedDate.hh_mm_ss = formattedDate.hours + ':' + formattedDate.minutes + ':' + formattedDate.seconds;
return formattedDate;
}
module.exports = {
time,