Module

x/lodash_es/mod.ts>unescape

lodash for deno use
Latest
function unescape
import { unescape } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/mod.ts";

The inverse of _.escape; this method converts the HTML entities &, <, >, ", and ' in string to their corresponding characters.

Note: No other HTML entities are unescaped. To unescape additional HTML entities use a third-party library like he.

Examples

_.unescape('fred, barney, & pebbles'); // => 'fred, barney, & pebbles'