(chars)
| 153 | } |
| 154 | |
| 155 | function sanitizeText(chars) { |
| 156 | var buf = []; |
| 157 | var writer = htmlSanitizeWriter(buf, angular.noop); |
| 158 | writer.chars(chars); |
| 159 | return buf.join(''); |
| 160 | } |
| 161 | |
| 162 | |
| 163 | // Regular Expressions for parsing tags and attributes |
no test coverage detected