UNPKG

activity-theme-creative

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