Update date.ts

[ci skip]
This commit is contained in:
Michael Shamoon 2022-05-13 11:52:05 -07:00
parent 0bdc132dcf
commit 9ed6c78466

View File

@ -1,5 +1,5 @@
// see https://github.com/dateutil/dateutil/issues/878 , JS Date does not // see https://github.com/dateutil/dateutil/issues/878 , JS Date does not
// seem to accept these strings as valid dates so we must normalize offset // seem to accept these strings as valid dates so we must normalize offset
export function normalizeDateStr(dateStr: string): string { export function normalizeDateStr(dateStr: string): string {
return dateStr.replace(/-(\d\d):\d\d:\d\d/gm, `-$1:00`) return dateStr.replace(/[\+-](\d\d):\d\d:\d\d/gm, `-$1:00`)
} }