new convenience func

This commit is contained in:
Adam D. Ruppe 2019-07-09 09:23:20 -04:00
parent ed20829686
commit c21ca0de83
1 changed files with 1 additions and 0 deletions

View File

@ -50,6 +50,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];
};