Function
cdata
* Return cdata escaped CDATA `str`.
(str)
Source from the content-addressed store, hash-verified
| 3896 | */ |
| 3897 | |
| 3898 | function cdata(str) { |
| 3899 | return '<![CDATA[' + escape(str) + ']]>'; |
| 3900 | } |
| 3901 | |
| 3902 | }); // module: reporters/xunit.js |
| 3903 | |