1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 22:19:26 +00:00
Files
stratos/lib/handlebarsHelpers.js
2022-03-03 09:21:43 +00:00

9 lines
160 B
JavaScript

'use strict';
const helpers = {};
helpers.eq = (arg1, arg2, options) =>
arg1 === arg2 ? options.fn(this) : options.inverse(this);
module.exports = helpers;