keeweb/app/scripts/helpers/ifneq.js

8 lines
197 B
JavaScript

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