UNPKG

323 BJavaScriptView Raw
1var staticEscapeMap = require('./staticEscapeMap')
2
3var helperFormatEscaper = require('./helperFormatEscaper')
4
5/**
6 * 转义HTML字符串,替换&, <, >, ", ', `字符
7 *
8 * @param {String} str 字符串
9 * @return {String}
10 */
11var escape = helperFormatEscaper(staticEscapeMap)
12
13module.exports = escape