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

Function isUnicodeIdentifierPart

test/fixtures/snapshot/typescript.js:10251–10256  ·  view source on GitHub ↗
(code, languageVersion)

Source from the content-addressed store, hash-verified

10249 }
10250 ts.isUnicodeIdentifierStart = isUnicodeIdentifierStart;
10251 function isUnicodeIdentifierPart(code, languageVersion) {
10252 return languageVersion >= 2 /* ScriptTarget.ES2015 */ ?
10253 lookupInUnicodeMap(code, unicodeESNextIdentifierPart) :
10254 languageVersion === 1 /* ScriptTarget.ES5 */ ? lookupInUnicodeMap(code, unicodeES5IdentifierPart) :
10255 lookupInUnicodeMap(code, unicodeES3IdentifierPart);
10256 }
10257 function makeReverseMap(source) {
10258 var result = [];
10259 source.forEach(function (value, name) {

Callers 1

isIdentifierPartFunction · 0.85

Calls 1

lookupInUnicodeMapFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…