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

Function isBitwiseOperatorOrHigher

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

Source from the content-addressed store, hash-verified

30425 || kind === 52 /* SyntaxKind.CaretToken */;
30426 }
30427 function isBitwiseOperatorOrHigher(kind) {
30428 return isBitwiseOperator(kind)
30429 || isEqualityOperatorOrHigher(kind);
30430 }
30431 // NOTE: The version in utilities includes ExclamationToken, which is not a binary operator.
30432 function isLogicalOperator(kind) {
30433 return kind === 55 /* SyntaxKind.AmpersandAmpersandToken */

Callers 1

Calls 2

isBitwiseOperatorFunction · 0.85

Tested by

no test coverage detected