MCPcopy Index your code
hub / github.com/witheve/Eve / unescapeString

Function unescapeString

src/commonmark.js:927–933  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

925
926// Replace entities and backslash escapes with literal characters.
927var unescapeString = function(s) {
928 if (reBackslashOrAmp.test(s)) {
929 return s.replace(reEntityOrEscapedChar, unescapeChar);
930 } else {
931 return s;
932 }
933};
934
935var normalizeURI = function(uri) {
936 try {

Callers 3

commonmark.jsFile · 0.85
parseLinkTitleFunction · 0.85
parseLinkDestinationFunction · 0.85

Calls 1

testMethod · 0.45

Tested by

no test coverage detected