Когда я запускаю следующее в лямбде AWS, размещенном в us-east-1
const currentTime = moment().utc().valueOf();
console.log(new Date( currentTime ));//1538003255995
Prints: Wed Sep 26 2018 19:07:35 GMT-0400 (Eastern Daylight Time) --- Correct in terms of current time.
const currentExecution = moment().set({
hour: 19,
minute: 24,
second: 0
}).utc().valueOf();
console.log(new Date( currentTime ));//1537989840995
Prints:Wed Sep 26 2018 15:24:00 GMT-0400 (Eastern Daylight Time)
Почему он показывает 15:24 вместо 19:24?Но когда я запускаю этот код на моей локальной машине, расположенной в EST, он печатает Wed Sep 26 2018 19:24:00 GMT-0400 (Eastern Daylight Time)
Почему разница в 4 часа при запуске только в лямбде?