| 17:55 | <Richard Gibson> | I observed this in V8 and JSC but haven't investigated yet; does anyone know what's going on?
interestingly, SpiderMonkey seems to handle it better: "7 PM (Fractional Second: 00)" |
| 17:57 | <sffc> | https://github.com/tc39/ecma402/issues/394 |
| 18:00 | <sffc> | It's an ill-defined options bag, because you are asking for hours and fractional second digits, which are not adjacent. You should add minutes and seconds, or else you are subject to garbage in garbage out, at least until we fix the spec to handle these cases better (which is what issue 394 aims to do). |
| 18:02 | <sffc> | I think F14 means like "field 14" which is the root data for appendItems, and maybe SpiderMonkey carries "nicer" data for the appendItems, but ideally we never need to use appendItems because they're almost always in GIGO situations |
| 18:03 | <Richard Gibson> | so the V8/JSC behavior is spec-conformant? |
| 18:05 | <sffc> | I don't see why it wouldn't be |