diff --git a/app.js b/app.js index 8ef5c3f..e12fb44 100644 --- a/app.js +++ b/app.js @@ -285,6 +285,11 @@ handlebars = handlebars.create({ return'

Please retain the details above as a reference of payment

'; } return''; + }, + upperFirst: (value) => { + return value.replace(/^\w/, (chr) => { + return chr.toUpperCase(); + }); } } });