This commit is contained in:
2020-08-24 21:51:57 +00:00
parent e763b79988
commit c5e7904dfe
2 changed files with 15 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
function ayRegisterHelpers() {
Handlebars.registerHelper("loud", function (aString) {
return aString.toUpperCase();
});
}