deploy-project
v2.0.0
Published
date format | escape html | unescape html
Downloads
2
Readme
##description name: deploy-project version: v2.0.0
##install npm i deploy-project
##import const deploy-project = require('./deploy-project');
##function1 const newDateStr = deploy-project.dateFormat(new Date()); console.log(newDateStr);
##function3 const htmlStr = 'test html str escape'; const newStr = deploy-project.toEscape(htmlStr); console.log(newStr);
##function3 const str = '<html>test html str escape</html>'; const newHtmlStr = deploy-project.toUnEscape(str); console.log(newHtmlStr);