UNPKG
@thinql/parse
Version:
latest (0.2.0)
0.2.0
Parse ThinQL queries to ASTs
github.com/mmiller42/thinql
mmiller42/thinql
@thinql/parse
/
src
/
lib
/
tokens
/
comparisonOperator.js
14 lines
(12 loc)
•
149 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
comparisonOperator = {
match
: [
'!='
,
'*='
,
'>='
,
'<='
,
'>'
,
'<'
,
'='
, ], }
export
default
comparisonOperator