xxxxxxxxxx
const hbs = require("hbs")
hbs.registerHelper("name", function(input) {
return input + 1 // add 1 to whatever numerical input is provided
)
xxxxxxxxxx
Handlebars.registerHelper("noop", function(options) {
return options.fn(this);
});