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

6 lines
180 B
JavaScript

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