MCPcopy Index your code
hub / github.com/nodejs/node / isJsxIntrinsicIdentifier

Function isJsxIntrinsicIdentifier

test/fixtures/snapshot/typescript.js:73775–73777  ·  view source on GitHub ↗

* Returns true iff React would emit this tag name as a string rather than an identifier or qualified name

(tagName)

Source from the content-addressed store, hash-verified

73773 * Returns true iff React would emit this tag name as a string rather than an identifier or qualified name
73774 */
73775 function isJsxIntrinsicIdentifier(tagName) {
73776 return tagName.kind === 79 /* SyntaxKind.Identifier */ && ts.isIntrinsicJsxName(tagName.escapedText);
73777 }
73778 function checkJsxAttribute(node, checkMode) {
73779 return node.initializer
73780 ? checkExpressionForMutableLocation(node.initializer, checkMode)

Calls

no outgoing calls

Tested by

no test coverage detected