linwenling
2023-05-03 f5d6313fd8d62501844527232b044055299ccdff
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); } });