(str)
| 82 | var elapsed; |
| 83 | |
| 84 | var escape_selector = function (str) { |
| 85 | return str.replace(/([ #;&,.+*~\':"!^$[\]()=<>|\/@{}\\])/g,'\\$1') |
| 86 | } |
| 87 | |
| 88 | function escape_html(str) { |
| 89 | return $("<p/>").text(str).html(); |
no outgoing calls
no test coverage detected