mediawiki-extensions-Popups/src/ui/templates/templateUtil.js
Stephen Niedzielski 57762e0417 Hygiene: favor const
Bug: T165036
Change-Id: I17d374eaac6627ca6a8ba178862b2a9cff2538c0
2018-03-21 10:44:24 +00:00

14 lines
226 B
JavaScript

/**
* @module templateUtil
*/
const mw = window.mediaWiki;
/**
* @param {string} str
* @return {string} The string with any HTML entities escaped.
*/
export function escapeHTML( str ) {
return mw.html.escape( str );
}