diff --git a/npm/packs/core/src/abp.js b/npm/packs/core/src/abp.js index 9405310771..c267fc151f 100644 --- a/npm/packs/core/src/abp.js +++ b/npm/packs/core/src/abp.js @@ -684,6 +684,13 @@ var abp = abp || {}; document.cookie = cookieValue; } + /** + * Escape HTML to help prevent XSS attacks. + */ + abp.utils.htmlEscape = function (html) { + return typeof html === 'string' ? html.replace(/&/g, '&').replace(//g, '>').replace(/"/g, '"') : html; + } + /* SECURITY ***************************************/ abp.security = abp.security || {}; abp.security.antiForgery = abp.security.antiForgery || {};