Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set global time zone

I am using Moment.js to handle dates in my web application. The server returns all the dates in milliseconds UTC. Now, I have to display the dates applying a specific timezone (based on the user settings).

Is there any way to set the timezone globally instead of changing all the calls to momentjs to handle it?

like image 847
Fabrizio Fortino Avatar asked Jul 17 '13 10:07

Fabrizio Fortino


1 Answers

You can set the default timezone in Moment by using:

moment.tz.setDefault(String); 

For example

moment.tz.setDefault("America/New_York"); 
like image 170
Oliver Salzburg Avatar answered Sep 18 '22 18:09

Oliver Salzburg