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

6 lines
179 B
JavaScript

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