@jswork/simple-date-format
v1.0.5
Published
A simple date format.
Downloads
46
Maintainers
Readme
simple-date-format
A simple date format.
installation
npm install @jswork/simple-date-format
usage
import sdf from '@jswork/simple-date-format';
// get current datetime:
const res1 = sdf('YYYY-MM-DD HH:mm:ss');
// 2020-01-01 12:12:12
// use format hooks
const res2 = sdf('date');
// 2020-01-01
format hooks
const FORMAT_HOOKS = {
date: 'YYYY-MM-DD',
datetime: 'YYYY-MM-DD HH:mm:ss',
time: 'HH:mm:ss',
month: 'YYYY-MM',
dbdt: 'YYYYMMDD_HHmmss',
fullday: 'YYYY/YYYY-MM/YYYY-MM-DD'
};
formats
| format | Output | Description | |--------|------------------|----------------------| | YY | 18 | 两位数的年份 | | YYYY | 2018 | 四位数的年份 | | M | 1-12 | 月份,从 1 开始 | | MM | 01-12 | 月份,两位数 | | D | 1-31 | 月份里的一天 | | DD | 01-31 | 月份里的一天,两位数 |
license
Code released under the MIT license.