custom_node_yl

1.0.0 • Public • Published

1.安装方式

1.1使用npm安装

   npm i custom_node

2.导入方式

   const c=require("custon_node")

3.格式化时间

function dateFormat(){
    const date=new Date()
    const y=date.getFullYear()
    const m=date.getMonth()+1
    const d=date.getDay()
    const hh=date.getHours()
    const mm=date.getMinutes()
    const ss=date.getSeconds()
    console.log(y+"-"+m+"-"+d+"-"+hh+"-"+mm+"-"+ss)

}

4.转义HTML中的特色字符

function htmlEscape(str){
    const s=str.replace(/>|< |"/g,(i)=>{
        switch(i){
            case">":
                return "&gt;"
            case"<":
                return "&lt;"
            case'"':
                return "&quot"
        }
    })
    console.log(s)
}

5.还原HTML中的特色字符

function mdEscape(str){
    const s=str.replace(/&gt|&lt|&quot/g,(i)=>{
        switch(i){
            case"&gt":
                return ">"
            case"&lt":
                return "<"
            case'&quot':
                return '"'
        }
    })
    console.log(s)
}

6.开源协议

ISC

Readme

Keywords

Package Sidebar

Install

npm i custom_node_yl

Weekly Downloads

0

Version

1.0.0

License

ISC

Unpacked Size

3.98 kB

Total Files

5

Last publish

Collaborators

  • yljerry