1.0.0 • Published 3 years ago
custom_node_jlj v1.0.0
1.安装方式
1.1使用npm方式安装
npm i custom_node_jlj2.导入方式
const c = require("custom_node_jlj")3.格式化时间
//格式化时间
function dateFormat(){
	const date = new Date()
	const y = date.getFullYear()
	const m = date.getMonth()+1
	const d = date.getDate()
	const hh = date.getHours()
	const mm = date.getMinutes()
	const ss = date.getSeconds()
	console.log(y+"-"+m+"-"+d+" "+hh+":"+mm+":"+ss)
//	return y+"-"+m+"-"+d+" "+hh+":"+mm+":"+ss
}4.转义HTML中的特殊字符
function htmlEscape(str){
	const s = str.replace(/>|<|"/g,(i)=>{
		switch(i){
			case ">":
				return ">"
			case "<":
				return "<"
			case '"':
				return """
		}
	})
	console.log(s)
	return s
}5.还原HTML中的特殊字符
function escapeHtml(str){
	const s = str.replace(/&[a-z]*;/g,(i)=>{
		switch(i){
			case ">":
				return ">"
			case "<":
				return "<"
			case '"':
				return '"'
		}
	})
	console.log(s)
	return s
}6.开源协议
ISC
1.0.0
3 years ago