NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/string/escape.js

14 lines
318 B
Java
Raw Permalink Normal View History

2023-09-14 14:47:11 +08:00
var staticEscapeMap = require('../static/staticEscapeMap')
var helperFormatEscaper = require('./helperFormatEscaper')
/**
* 转义HTML字符串替换&, <, >, ", ', `字符
*
* @param {String} str 字符串
* @return {String}
*/
var escape = helperFormatEscaper(staticEscapeMap)
module.exports = escape