mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2025-01-09 04:34:13 +00:00
14 lines
224 B
JavaScript
14 lines
224 B
JavaScript
|
/**
|
||
|
* @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 );
|
||
|
}
|