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

Function indexOfAnyCharCode

test/fixtures/snapshot/typescript.js:574–581  ·  view source on GitHub ↗
(text, charCodes, start)

Source from the content-addressed store, hash-verified

572 }
573 ts.arraysEqual = arraysEqual;
574 function indexOfAnyCharCode(text, charCodes, start) {
575 for (var i = start || 0; i < text.length; i++) {
576 if (contains(charCodes, text.charCodeAt(i))) {
577 return i;
578 }
579 }
580 return -1;
581 }
582 ts.indexOfAnyCharCode = indexOfAnyCharCode;
583 function countWhere(array, predicate) {
584 var count = 0;

Callers

nothing calls this directly

Calls 1

containsFunction · 0.85

Tested by

no test coverage detected