1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 02:19:26 +00:00
Files
stratos/lib/handlebarsHelpers.js
2022-02-08 20:20:23 +00:00

7 lines
144 B
JavaScript

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