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

Function isRelationalOperator

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

Source from the content-addressed store, hash-verified

30398 || isAdditiveOperatorOrHigher(kind);
30399 }
30400 function isRelationalOperator(kind) {
30401 return kind === 29 /* SyntaxKind.LessThanToken */
30402 || kind === 32 /* SyntaxKind.LessThanEqualsToken */
30403 || kind === 31 /* SyntaxKind.GreaterThanToken */
30404 || kind === 33 /* SyntaxKind.GreaterThanEqualsToken */
30405 || kind === 102 /* SyntaxKind.InstanceOfKeyword */
30406 || kind === 101 /* SyntaxKind.InKeyword */;
30407 }
30408 function isRelationalOperatorOrHigher(kind) {
30409 return isRelationalOperator(kind)
30410 || isShiftOperatorOrHigher(kind);

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected