MCPcopy Index your code
hub / github.com/nodejs/node / isRelationalOperatorOrHigher

Function isRelationalOperatorOrHigher

test/fixtures/snapshot/typescript.js:30408–30411  ·  view source on GitHub ↗
(kind)

Source from the content-addressed store, hash-verified

30406 || kind === 101 /* SyntaxKind.InKeyword */;
30407 }
30408 function isRelationalOperatorOrHigher(kind) {
30409 return isRelationalOperator(kind)
30410 || isShiftOperatorOrHigher(kind);
30411 }
30412 function isEqualityOperator(kind) {
30413 return kind === 34 /* SyntaxKind.EqualsEqualsToken */
30414 || kind === 36 /* SyntaxKind.EqualsEqualsEqualsToken */

Callers 1

Calls 2

isRelationalOperatorFunction · 0.85
isShiftOperatorOrHigherFunction · 0.85

Tested by

no test coverage detected