(source)
| 19358 | }; |
| 19359 | |
| 19360 | function encodeHTML(source) { |
| 19361 | return source == null |
| 19362 | ? '' |
| 19363 | : (source + '').replace(replaceReg, function (str, c) { |
| 19364 | return replaceMap[c]; |
| 19365 | }); |
| 19366 | } |
| 19367 | |
| 19368 | var TPL_VAR_ALIAS = ['a', 'b', 'c', 'd', 'e', 'f', 'g']; |
| 19369 |
no outgoing calls
no test coverage detected