UNPKG

node1-tools

Version:

提供了格式化时间,HTMLEscape的功能

9 lines 292 B
// 包的入口文件 const dateFormat = require('./src/dateFormat') const htmlEscape = require('./src/htmlEscape') // 向外暴露需要的成员 module.exports = { // ...对象:表示展开运算符,即展开对象里面的所有属性 ...dateFormat, ...htmlEscape }