moment / luxon

⏱ A library for working with dates and times in JS
https://moment.github.io/luxon
MIT License
15.23k stars 730 forks source link

the input "2014年8月6日 GMT+8 13:07:04" can't be parsed as format FFF #1443

Open bodycombathuang opened 1 year ago

bodycombathuang commented 1 year ago

console.log(DateTime.fromISO('2014-08-06T13:07:04.054') .setLocale('zh-CN') .toFormat('FFF'));

shows output 2014年8月6日 GMT+8 13:07:04

but DateTime.fromFormat("2014年8月6日 GMT+8 13:07:04", 'FFF', { locale: "zh-CN"}) shows the input "2014年8月6日 GMT+8 13:07:04" can't be parsed as format FFF

diesieben07 commented 1 year ago

As I said in #1444, the issue here is the parsing of GMT-X time zone specifiers. I will look into it.