1.0.4 • Published 2 years ago

cus-formate-tools v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

cus-format-tools ---自定义格式化工具

安装

 npm install cus-formate-tools

导入

  const tools = require('cus-formate-tools')

格式化时间

const dateStr = tools.dateFormat(new Date())

转义html特殊字符

  // 转义的特殊字符
  const htmlStr = '<h1 title="abc">这是h1标签<span>123&nbps;</span></h1>'
  const str = tools.htmlEscape(htmlStr)
  console.log(str)

还原html特殊字符

  const originStr = tools.htmlUnEscape(str)
  console.log(originStr) // 打印还原的字符串
1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago