I want to use Moment's guess() function to return the timezone continent (or country) and city as in their example:
moment.tz.guess(); // America/Chicago
But the above doesn't work. The returned value is CET, which is something else. It's an abbreviation of the Central European Time, i.e. no continent-country, no city.
How do I use the guess() function to return 'Europe/Stockholm', 'America/Chicago' etc?