Hi,
I have a date represented by the milliseconds figure and would like to get the full name of the Day that date corresponds to.
I have tried the following, but it seems like skeleton does not recognize the formatter 'EEEE', which is correct from the standard's perspective:
var dateFormatOptions = {skeleton: 'EEEE'};
var deFormatter = Globalize('de').dateFormatter(dateFormatOptions);
This fails with the exception 'E_UNSUPPORTED: Unsupported {"feature":"year pattern u"}'
However, this code does work as expected and returns the full name of the day:
var dateFormatOptions = {raw: 'EEEE'};
var deFormatter = Globalize('de').dateFormatter(dateFormatOptions);