escape.js 310 B

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