UNPKG

my-date-tools-mxy

Version:

时间格式化功能

17 lines 373 B
function htmlEscape(htm){ return htm.replace(/<|>|"|&/g,match=>{ switch (match){ case '<': return '&lt'; case '>': return '&gt'; case '"': return '&quot'; case '&': return '&amp'; } }); } module.exports={ htmlEscape }