(d)
| 1099 | |
| 1100 | // A string without HTML in it can be considered to be HTML still |
| 1101 | var _isHtml = function (d) { |
| 1102 | return _empty(d) || typeof d === "string" |
| 1103 | } |
| 1104 | |
| 1105 | // Is a string a number surrounded by HTML? |
| 1106 | var _htmlNumeric = function (d, decimalPoint, formatted, allowEmpty) { |
no test coverage detected