(text)
| 61 | } |
| 62 | |
| 63 | function escapeText(text) { |
| 64 | if (text.indexOf('<') < 0) { |
| 65 | return raw(text); |
| 66 | } |
| 67 | return expr(t.stringLiteral(text)); |
| 68 | } |
| 69 | |
| 70 | function escapePropValue(node) { |
| 71 | const value = node.value; |
no test coverage detected
searching dependent graphs…