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

6 lines
179 B
JavaScript

import Handlebars from 'hbs';
Handlebars.registerHelper('ifneq', function(lvalue, rvalue, options) {
return lvalue !== rvalue ? options.fn(this) : options.inverse(this);
});