UNPKG

obtaintime

Version:

A simple module to get date and time with format

7 lines (5 loc) 187 B
const moment = require('moment-timezone'); exports.obtainTime = function(){ let now = Date.now(); return moment.tz(now, 'America/New_York').format('MMMM Do YYYY h:mm:ss a'); }