UNPKG

hbs-helper

Version:

handlebar template engine's helper

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); } }); }