UNPKG

text-automation

Version:

html转译 富文本单个空格 删除空格

14 lines 284 B
// html转译 function html_label(label) { return label.replace(/<|>/g, (match) => { switch (match) { case '>': return '&gt;' case '<': return '&lt;' } }) } module.exports ={ html_label }