Skip to content

Commit

Permalink
Strict only helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
snewcomer committed Apr 13, 2021
1 parent 155e30b commit 678580a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export const CALL_KEYWORDS = keywords('Call')
.kw('log', logKeyword)
.kw('eq', equalKeyword, { strictOnly: true })
.kw('neq', notEqualKeyword, { strictOnly: true })
.kw('lt', comparisonKeyword('lt'))
.kw('lte', comparisonKeyword('lte'))
.kw('gt', comparisonKeyword('gt'))
.kw('gte', comparisonKeyword('gte'))
.kw('lt', comparisonKeyword('lt'), { strictOnly: true })
.kw('lte', comparisonKeyword('lte'), { strictOnly: true })
.kw('gt', comparisonKeyword('gt'), { strictOnly: true })
.kw('gte', comparisonKeyword('gte'), { strictOnly: true })
.kw('if', ifUnlessInlineKeyword('if'))
.kw('unless', ifUnlessInlineKeyword('unless'))
.kw('component', curryKeyword(CurriedType.Component))
Expand Down

0 comments on commit 678580a

Please sign in to comment.