new convenience func

This commit is contained in:
Adam D. Ruppe 2019-07-09 09:24:36 -04:00
parent c21ca0de83
commit 3df61e91ff
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ Document renderTemplate(string templateName, var context = var.emptyObject, var
context.dayOfWeek = function string(string s) {
import std.datetime;
return daysOfWeekFullNames[DateTime.fromISOExtString(s).dayOfWeek];
return daysOfWeekFullNames[Date.fromISOExtString(s[0 .. 10]).dayOfWeek];
};
context.formatTime = function string(string s) {