MCPcopy Create free account
hub / github.com/sql-js/sql.js / unescape

Function unescape

documentation/javascript/application.js:11332–11336  ·  view source on GitHub ↗
(code)

Source from the content-addressed store, hash-verified

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,

Callers 1

application.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…