(code)
| 11330 | // Within an interpolation, evaluation, or escaping, remove HTML escaping |
| 11331 | // that had been previously added. |
| 11332 | var unescape = function(code) { |
| 11333 | return code.replace(unescaper, function(match, escape) { |
| 11334 | return escapes[escape]; |
| 11335 | }); |
| 11336 | }; |
| 11337 | |
| 11338 | // JavaScript micro-templating, similar to John Resig's implementation. |
| 11339 | // Underscore templating handles arbitrary delimiters, preserves whitespace, |
no outgoing calls
no test coverage detected
searching dependent graphs…