Removed unused code

This commit is contained in:
2023-05-15 11:10:34 +02:00
parent 93ddee7c2b
commit 52c1620552
3 changed files with 0 additions and 29 deletions

View File

@@ -3,19 +3,6 @@ const mergeHTMLPlugin = (function () {
var originalStream;
/**
* @param {string} value
* @returns {string}
*/
function escapeHTML(value) {
return value
.replace(/&/g, '&')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#x27;');
}
/* plugin itself */
/** @type {HLJSPlugin} */