Add comment

Signed-off-by: Fred Boniface <fred@fjla.uk>
This commit is contained in:
Fred Boniface 2023-09-30 20:34:30 +01:00
parent 63fa73ac74
commit 999310baa2
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ function transformUnspecifiedDateTime(input: string): Date | undefined {
if (!input) {
return undefined;
}
const date = tz(input, "Europe/London");
const date = tz(input, "Europe/London"); // Want to be creating a moment object using moment.tz(...)
return date.toDate();
}