2.0.0 • Published 2 years ago

mistletoejiejie-date v2.0.0

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

下载

npm mistletoejiejie-date -D

使用

注:日期格式化

const miDate = require('mistletoejiejie-date')
console.log(miDate.format('y-m-d h:i:s'))

语法:miDate.format('随意组合词keywords')

    'y' : 年
    'm' : 月
    'd' : 日
    'h' : 时
    'i' : 分
    's' : 秒



举个栗子🌰
miDate.format('ymdhis')
miDate.format('y-m-d h:i:s')
miDate.format('y/m/d')
miDate.format('y/m/d h:i:s')
miDate.format('y年m月d日 h:i:s')
miDate.format('y')
miDate.format('m')
miDate.format('d')
miDate.format('h')
miDate.format('i')
miDate.format('s')