MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / _isValidChar

Method _isValidChar

packages/alphatab/src/xml/XmlParser.ts:441–451  ·  view source on GitHub ↗
(c: number)

Source from the content-addressed store, hash-verified

439 }
440
441 private static _isValidChar(c: number): boolean {
442 return (
443 (c >= XmlParser.CharCodeLowerA && c <= XmlParser.CharCodeLowerZ) ||
444 (c >= XmlParser.CharCodeUpperA && c <= XmlParser.CharCodeUpperZ) ||
445 (c >= XmlParser.CharCode0 && c <= XmlParser.CharCode9) ||
446 c === XmlParser.CharCodeColon ||
447 c === XmlParser.CharCodeDot ||
448 c === XmlParser.CharCodeUnderscore ||
449 c === XmlParser.CharCodeMinus
450 );
451 }
452}

Callers 1

parseMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected