MCPcopy Index your code
hub / github.com/stemkoski/stemkoski.github.com / unescape

Function unescape

MathBox/mathbox-bundle.js:41504–41506  ·  view source on GitHub ↗

* The inverse of `_.escape` this method converts the HTML entities * `&`, `<`, `>`, `"`, and `'` in `string` to their * corresponding characters. * * @static * @memberOf _ * @category Utilities * @param {string} string The string to unescape.

(string)

Source from the content-addressed store, hash-verified

41502 * // => 'Fred, Barney & Pebbles'
41503 */
41504 function unescape(string) {
41505 return string == null ? '' : String(string).replace(reEscapedHtml, unescapeHtmlChar);
41506 }
41507
41508 /**
41509 * Generates a unique ID. If `prefix` is provided the ID will be appended to it.

Callers 2

mathbox-core.jsFile · 0.85
mathbox-bundle.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected