Skip to content

Commit

Permalink
chore(helpers): updates
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Mar 6, 2019
1 parent ffe26b4 commit 65da9e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/hbs/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -618,9 +618,9 @@ var helpers = {
},

isNotTrue: function (obj, options) {
if (obj === true || obj.toLowerCase() === 'true') return options.fn(this)
if (obj === true || obj.toLowerCase() === 'true') return options.inverse(this)

return options.inverse(this)
return options.fn(this)
},

split: function (arr, sep) {
Expand Down

0 comments on commit 65da9e9

Please sign in to comment.