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

Function isUnicodeIdentifierStart

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

Source from the content-addressed store, hash-verified

10242 return false;
10243 }
10244 /* @internal */ function isUnicodeIdentifierStart(code, languageVersion) {
10245 return languageVersion >= 2 /* ScriptTarget.ES2015 */ ?
10246 lookupInUnicodeMap(code, unicodeESNextIdentifierStart) :
10247 languageVersion === 1 /* ScriptTarget.ES5 */ ? lookupInUnicodeMap(code, unicodeES5IdentifierStart) :
10248 lookupInUnicodeMap(code, unicodeES3IdentifierStart);
10249 }
10250 ts.isUnicodeIdentifierStart = isUnicodeIdentifierStart;
10251 function isUnicodeIdentifierPart(code, languageVersion) {
10252 return languageVersion >= 2 /* ScriptTarget.ES2015 */ ?

Callers 1

isIdentifierStartFunction · 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…