()
| 876 | } |
| 877 | |
| 878 | function createSpaceExpressionNode(): any { |
| 879 | return { |
| 880 | type: "JSXExpressionContainer", |
| 881 | expression: { |
| 882 | type: "StringLiteral", |
| 883 | value: " ", |
| 884 | }, |
| 885 | }; |
| 886 | } |
| 887 | |
| 888 | function isTextLikeChild(child: any): boolean { |
| 889 | return child.type === "JSXText" || (child.type === "JSXExpressionContainer" && child.expression?.type === "StringLiteral"); |
no outgoing calls
no test coverage detected