I'm using moment-timezone, I've been trying to implement a check for specific time, greater than or less than my current time, and it is required for a specific timezone -> i.e - "Asia/Calcutta".
let time1 = false;
if(momentTimezone("12:00","HH:mm","Asia/Calcutta").isBefore(momentTimezone.tz("Asia/Calcutta")))
{
time1 = true;
}
On local console output is "true" for time exceeding 12:00 hour but when deployed, output is "false" and when UTC time exceeds 12:00 hour it gives "true".
It is working fine on my local machine and is giving correct output but when I deploy it on server, it is not working properly, the timezones are checked as UTC and is giving wrong result.