(source)
| 16458 | '\'': ''' |
| 16459 | }; |
| 16460 | function encodeHTML(source) { |
| 16461 | return source == null ? '' : (source + '').replace(replaceReg, function (str, c) { |
| 16462 | return replaceMap[c]; |
| 16463 | }); |
| 16464 | } |
| 16465 | /** |
| 16466 | * Make value user readable for tooltip and label. |
| 16467 | * "User readable": |
no outgoing calls
no test coverage detected
searching dependent graphs…