1.0.1 • Published 8 months ago

monkey-date-format v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

#安装

npm install monkey-date-format

#格式化时间

##导入

const TIME = require("monkey-date-format")

##使用

const FormatTime = TIME.dateFormat(new Date())

##输出

console.log(FormatTime) // 2021-01-01 00:00:00

#转义 HTML 中的特殊字符

##导入

const TIME = require("monkey-date-format")

##使用

const str = TIME.htmlEscape("<h1>hello world</h1>")
const htmlStr = TIME.htmlUnEscape(str)

##输出

console.log(str) // &lt;h1&gt;hello world&lt;/h1&gt;
console.log(htmlStr) // <h1>hello world</h1>
1.0.1

8 months ago

1.0.0

8 months ago