All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules.core.string.escape-html.js Maven / Gradle / Ivy

The newest version!
'use strict';
var $export = require('./_export');
var $re = require('./_replacer')(/[&<>"']/g, {
  '&': '&',
  '<': '<',
  '>': '>',
  '"': '"',
  "'": '''
});

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy