keeweb/app/scripts/hbs-helpers/ifneq.js

6 lines
184 B
JavaScript
Raw Normal View History

2017-01-31 07:50:28 +01:00
const Handlebars = require('hbs');
2015-12-16 22:50:45 +01:00
Handlebars.registerHelper('ifneq', function(lvalue, rvalue, options) {
return lvalue !== rvalue ? options.fn(this) : options.inverse(this);
});