MCPcopy Index your code
hub / github.com/BrainJS/brain.js / isRegExpIdentifierPart

Function isRegExpIdentifierPart

browser.js:21728–21730  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

21726 return false
21727};
21728function isRegExpIdentifierPart(ch) {
21729 return isIdentifierChar(ch, true) || ch === 0x24 /* $ */ || ch === 0x5F /* _ */ || ch === 0x200C /* <ZWNJ> */ || ch === 0x200D /* <ZWJ> */
21730}
21731
21732// https://www.ecma-international.org/ecma-262/8.0/#prod-annexB-AtomEscape
21733pp$9.regexp_eatAtomEscape = function(state) {

Callers 1

browser.jsFile · 0.85

Calls 1

isIdentifierCharFunction · 0.85

Tested by

no test coverage detected