Home Reference Source Repository

js/templates/helpers/ifeq.js

define([], function() {

    return function(a, b, opts) {
        return (a == b) ? opts.fn(this) : opts.inverse(this);
    };

});