Tim Wood
Tim Wood
I ran into issues with negative sizes as well. > The starting font-size must be small enough to guarantee that each individual line is not wrapping pre-BigText. If the line...
I believe this is behaving as expected, the [week-year](https://momentjs.com/docs/#/get-set/week-year/) and the [calendar-year](https://momentjs.com/docs/#/get-set/year/) are not always the same, so it is common for Jan 1 to belong to a week of...
Hmm, definitely not behaving as expected. Is there a reason you need to parse a string instead of doing something like this? ``` js moment.tz('America/Los_Angeles').hours(9).startOf('hour').toString(); ```
There is a weird situation going on here. When a moment is created with `moment.tz`, the arguments are first passed to `moment.utc`. When it gets to the part in parsing...
I think https://github.com/moment/moment-rfcs/pull/1 could help provide a solution to this.
This is the same issue as #119, and requires changes to moment core to fix.
I think https://github.com/moment/moment-rfcs/pull/1 could help provide a solution to this.
I think this is a similar issue to #301. We may want to lean on [the population data set](https://github.com/moment/moment-timezone/blob/develop/tasks/population.json) for this filtering and make a dedicated api for it. The...
What do you need the filtered list for? Perhaps we can design a better api that can do this filtering for you.
We maintain a list of [approximate populations for many timezones](https://github.com/moment/moment-timezone/blob/develop/tasks/population.json) that could also be used to filter the list. We could also consider adding a `moment.tz.guesses()` api to expose a...