UNPKG

activity-theme-creative

Version:
9 lines 231 B
module.exports= function(hbs){ hbs.registerHelper('ifEven', function(conditional, options) { if((conditional % 2) == 0) { return options.fn(this); } else { return options.inverse(this); } }); }