(tag, children)
| 2141 | } |
| 2142 | |
| 2143 | function elementWithTag(tag, children) { |
| 2144 | return { |
| 2145 | type: "element", |
| 2146 | tag: tag, |
| 2147 | children: children || [] |
| 2148 | }; |
| 2149 | } |
| 2150 | |
| 2151 | function text(value) { |
| 2152 | return { |
no outgoing calls
no test coverage detected