MCPcopy Create free account
hub / github.com/HtmlUnit/htmlunit / isValidEscape

Function isValidEscape

src/test/resources/libraries/html2canvas/html2canvas.js:924–929  ·  view source on GitHub ↗
(c1, c2)

Source from the content-addressed store, hash-verified

922 codePoint === DELETE);
923 };
924 var isValidEscape = function (c1, c2) {
925 if (c1 !== REVERSE_SOLIDUS) {
926 return false;
927 }
928 return c2 !== LINE_FEED;
929 };
930 var isIdentifierStart = function (c1, c2, c3) {
931 if (c1 === HYPHEN_MINUS) {
932 return isNameStartCodePoint(c2) || isValidEscape(c2, c3);

Callers 2

isIdentifierStartFunction · 0.85
html2canvas.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…