datetime-utc-local
v1.0.1
Published
UTC or local time in YYYY/MM/DD-HH:mm:ss format
Downloads
1
Maintainers
Readme
datetime-utc-local
UTC or local time in YYYY/MM/DD-HH:mm:ss format
Installation
npm install datetime-utc-local
Usage
var DateTimeUTC = require('datetime-utc-local').utc;
var DateTimeLocal = require('datetime-utc-local').local;
console.log(DateTimeUTC()); // current UTC time
console.log(DateTimeLocal()); // current local time
console.log(DateTimeUTC(new Date(2018, 0, 1, 0, 0, 0))); // 2017/12/31-23:00:00
console.log(DateTimeLocal(new Date(2018, 0, 1, 0, 0, 0))); // 2018/01/01-00:00:00