moment().add(5, 'hours').short(true);
// h
const d = new Date();
const parseDate = d => {
const [day, month, date, year, time, timeZoneOffset, timeZone] =
d.toString().split(' ');
return {day, month, date, year, time, timeZoneOffset, timeZone};
}
const myDateObj = parseDate(d);
console.log(myDateObj.timeZone);
console.log(myDateObj.timeZoneOffset);
const processData = msg => {
Promise.resolve(msg)
.then(msg => {
return new Promise(resolve, reject) {
//обрабатываю данные и получаю переменную data
resolve(data);
}
})
.then(data => {
return new Promise(resolve, reject) {
//обрабатываю данные и получаю переменную dataTwo
resolve(dataTwo);
}
})
.then(dataTwo => {
//конец кода. Других колббеков больше нет
})
.catch(console.error);
}
app.on('location', processData);