1.0.3 • Published 3 years ago

myz-formate v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

myz-formate

格式化时间,获取2021-09-08 08:00:00或2021-09-08或08:00:00

install

npm install -g myz-formate

usage

const formatter = require('../index') console.info(formatter.getDate('2021-09-08', '-')) console.info(formatter.getTime(new Date(), '-')) console.info(formatter.getDateTime('', '-'))

目录结构

myz-formate
  ├─ index.js --入口文件
  ├─ lib --功能文件
  │  └─ formate.js
  ├─ package.json --配置文件,生成的
  ├─ README.md
  └─ test --测试文件
     └─ test-formate.js