MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / isIdentifierStart

Method isIdentifierStart

tools/mcdevicetree.js:1070–1072  ·  view source on GitHub ↗
(code)

Source from the content-addressed store, hash-verified

1068 return CHAR_TABLE[code] & HEX_DIGIT;
1069 }
1070 isIdentifierStart(code) {
1071 return CHAR_TABLE[code] & IDENTIFIER_START;
1072 }
1073 isIdentifierChar(code) {
1074 return CHAR_TABLE[code] & IDENTIFIER_CHAR;
1075 }

Callers 2

parseValueMethod · 0.95
parseArrayMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected