Creates a date parser function based on the specified locale.
The locale to use for parsing.
A function that parses a date string according to the specified locale.
Creates a date parser function based on the specified locale and specifier.
The locale to use for parsing.
The parsing specifier string.
Optional
timeZone: stringThe time zone to use for parsing.
A function that parses a date string according to the specified locale and specifier.
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
Creates a date parser function based on the specified locale and options.
The locale to use for parsing.
The parsing options.
A function that parses a date string according to the specified locale and options.
Creates a date parser function based on the specified locale, options, or specifier.
Param: locale
The locale to use for parsing.
Param: options
The parsing options or specifier.
Param: timeZone
The time zone to use for parsing.
Returns
A function that parses a date string according to the specified locale and options or specifier.