在JavaScript中将日期解析为Json

在JavaScript中将日期解析为Json

JavaScript 其它杂项

访问GitHub主页

共27Star

详细介绍

date2json

Greenkeeper badge Build Status npm version npm

Parse Date to Json in JavaScript

Usage

npm i date2json --save
date2json() // Get current time
date2json(new Date()) // Equal to the first one
date2json(new Date(1518545575000)) // Put Date object in the function to get that time
const date2json = require("date2json");

const currentTime = date2json();
console.log(currentTime);
// Local time in string JSON format
// {
//   "year": "YYYY",
//   "month": "MM",
//   "day": "DD",
//   "hour": "HH",
//   "minute": "mm",
//   "second": "SS"
// }

const otherTime = date2json(new Date(1518545575000));
console.log(otherTime);
// Local time with the epoch in string JSON format
// {
//   "year": "2018",
//   "month": "02",
//   "day": "14",
//   "hour": "02",
//   "minute": "12",
//   "second": "55"
// }

License

MIT

推荐源码