• Creates a date formatter function based on the specified locale.

    Parameters

    • locale: string

      The locale to use for formatting.

    Returns DateFormatter

    A function that formats a date according to the specified locale.

  • Creates a date formatter function based on the specified locale and options.

    Parameters

    • locale: string

      The locale to use for formatting.

    • options: DateTimeFormatOptions

      The formatting options.

    Returns DateFormatter

    A function that formats a date according to the specified locale and options.

  • Creates a date formatter function based on the specified locale and specifier.

    Parameters

    • locale: string

      The locale to use for formatting.

    • specifier: string

      The formatting specifier string.

    • OptionaltimeZone: string

      The time zone to use for formatting.

    Returns DateFormatter

    A function that formats a date according to the specified locale and specifier.

    If the date format specifier is invalid.

    The following are specifiers and values for 2008-07-31 15:30:45.678 using the de-DE locale and Europe/Berlin time zone (DST GMT+2): specifier: 'd' => '31.07.2008' specifier: 'D' => 'Donnerstag, 31. Juli 2008' specifier: 'f' => 'Donnerstag, 31. Juli 2008 um 15:30' specifier: 'F' => 'Donnerstag, 31. Juli 2008 um 15:30:45' specifier: 'g' => '31.07.2008 15:30' specifier: 'G' => '31.07.2008 15:30:45' specifier: 'm' => '31. Juli' specifier: 'M' => '31. Juli' specifier: 'o' => '2008-07-31T13:30:45.6780000' specifier: 'O' => '2008-07-31T13:30:45.6780000' specifier: 'r' => 'Thu, 31 Jul 2008 13:30:45 GMT' specifier: 'R' => 'Thu, 31 Jul 2008 13:30:45 GMT' specifier: 's' => '2008-07-31T13:30:45' specifier: 'S' => '2008-07-31T13:30:45' specifier: 't' => '15:30' specifier: 'T' => '15:30:45' specifier: 'u' => '2008-07-31 13:30:45Z' specifier: 'U' => 'Donnerstag, 31. Juli 2008 13:30:45' specifier: 'Y' => Oktober 2008