mediawiki-extensions-Popups/src/ui/templates/templateUtil.js

14 lines
224 B
JavaScript
Raw Normal View History

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