1.0.3 • Published 2 years ago

carbon-time v1.0.3

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

carbon-time.js

给moment.js添加类似Carbon.php的常见日期格式化功能

目前支持moment和dayjs(有format方法)

安装

npm i carbon-time

使用示例

const moment = require('moment')
const { extendCarbon } = require('./carbon-time.js')

// 给moment添加扩展功能
extendCarbon(moment);


console.log(moment().toDateTimeString());
// 2022-07-13 13:47:55

console.log(moment().toDateString());
// 2022-07-13

console.log(moment().toTimeString());
// 13:47:55