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

Function isShiftOperator

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

Source from the content-addressed store, hash-verified

30389 || isMultiplicativeOperatorOrHigher(kind);
30390 }
30391 function isShiftOperator(kind) {
30392 return kind === 47 /* SyntaxKind.LessThanLessThanToken */
30393 || kind === 48 /* SyntaxKind.GreaterThanGreaterThanToken */
30394 || kind === 49 /* SyntaxKind.GreaterThanGreaterThanGreaterThanToken */;
30395 }
30396 function isShiftOperatorOrHigher(kind) {
30397 return isShiftOperator(kind)
30398 || isAdditiveOperatorOrHigher(kind);

Callers 1

isShiftOperatorOrHigherFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected