Skip to content

tigercosmos/date2json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published