diff --git a/src/utils.ts b/src/utils.ts index 3139625..a0110e6 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -36,6 +36,10 @@ function dateToW3CString(date: Date) { return undefined; } + /** + * @see https://www.w3.org/TR/NOTE-datetime + */ + return date.toISOString(); }