MCPcopy Index your code
hub / github.com/reactjs/react-rails / isJSXIdentifierPart

Function isJSXIdentifierPart

lib/assets/javascripts/JSXTransformer.js:9082–9085  ·  view source on GitHub ↗
(ch)

Source from the content-addressed store, hash-verified

9080 }
9081
9082 function isJSXIdentifierPart(ch) {
9083 // exclude backslash (\) and add hyphen (-)
9084 return (ch !== 92) && (ch === 45 || isIdentifierPart(ch));
9085 }
9086
9087 function scanJSXIdentifier() {
9088 var ch, start, value = '';

Callers 1

scanJSXIdentifierFunction · 0.85

Calls 1

isIdentifierPartFunction · 0.85

Tested by

no test coverage detected