* Returns true iff React would emit this tag name as a string rather than an identifier or qualified name
(tagName)
| 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) |
no outgoing calls
no test coverage detected