mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 15:59:25 +00:00
9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
'use strict';
|
|
|
|
const helpers = {};
|
|
|
|
helpers.eq = (arg1, arg2, options) =>
|
|
arg1 == arg2 ? options.fn(this) : options.inverse(this);
|
|
|
|
module.exports = helpers;
|