| If you are considering switching to a (different) date library, I would suggest to hold off. ECMAScript is about to introduce a native date and time API that is much better than the current Date functionality. It may also make the need for a third-party date library obsolete (as long as you do not need to parse custom date formats). - https://github.com/tc39/proposal-temporal - https://github.com/tc39/proposal-temporal#polyfills - https://tc39.es/proposal-temporal/ - https://tc39.es/proposal-temporal/docs/index.html - https://github.com/tc39/proposal-temporal/issues/1450 - https://tc39.es/proposal-temporal/docs/parse-draft.html As far as I know, issue #1450 is the last remaining blocker for the standardization. I'd assume that this will be resolved in the next months. So Temporal will likely be officially released with ECMAScript 2023, but browser vendors and other implementors will start shipping it before the offical release. |