We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 662aca1 commit ef9dbdcCopy full SHA for ef9dbdc
helpers/if-eq.js
@@ -1,6 +1,7 @@
1
-/* eslint unicorn/prefer-module: 0, eqeqeq: 0 */
+/* eslint-disable-next-line unicorn/prefer-module, unicorn/no-anonymous-default-export */
2
module.exports = function (Handlebars) {
3
Handlebars.registerHelper('if_eq', function (a, b, options) {
4
+ /* eslint-disable-next-line eqeqeq */
5
if (a == b) {
6
return options.fn(this);
7
}
0 commit comments