Files
CMS-Server/ui/src/helpers/handlebars/eq.js
Matt Batchelder 6e3929c459 init commit
2026-02-11 20:55:38 -05:00

8 lines
136 B
JavaScript

module.exports = function(v1, v2, opts) {
if (v1 === v2) {
return opts.fn(this);
} else {
return opts.inverse(this);
}
};