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

Function isLogicalOperatorOrHigher

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

Source from the content-addressed store, hash-verified

30434 || kind === 56 /* SyntaxKind.BarBarToken */;
30435 }
30436 function isLogicalOperatorOrHigher(kind) {
30437 return isLogicalOperator(kind)
30438 || isBitwiseOperatorOrHigher(kind);
30439 }
30440 function isAssignmentOperatorOrHigher(kind) {
30441 return kind === 60 /* SyntaxKind.QuestionQuestionToken */
30442 || isLogicalOperatorOrHigher(kind)

Callers 1

Calls 2

isLogicalOperatorFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…