summaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/core.string.unescape-html.js
blob: 9d7a3d2c863566a2cb31774d702c909440bb26be (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';
var $export = require('./$.export');
var $re = require('./$.replacer')(/&(?:amp|lt|gt|quot|apos);/g, {
  '&':  '&',
  '&lt;':   '<',
  '&gt;':   '>',
  '&quot;': '"',
  '&apos;': "'"
});

$export($export.P + $export.F, 'String', {unescapeHTML:  function unescapeHTML(){ return $re(this); }});