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

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