* Removes null characters on the string. * @param {string} s The string to have the null characters removed. * @return {string} A string without null characters. * @private
(s)
| 683 | * @private |
| 684 | */ |
| 685 | stripNULs_(s) { |
| 686 | return s.replace(NULL_RE_, ''); |
| 687 | } |
| 688 | |
| 689 | /** |
| 690 | * The plain text of a chunk of HTML CDATA which possibly containing. |