UNPKG

@pradyumn-el/pollycli

Version:

pollycli lets users access the functionalities of Polly over a command line interface

10 lines (8 loc) 472 B
export const dateFormat = (EpocTimeInSec) => { const options = { year: 'numeric', month: 'long', day: 'numeric', hour: '2-digit', minute: '2-digit', second: '2-digit', 'hour12': true }; return (new Date(parseInt(EpocTimeInSec))).toLocaleString('en-US', options) } export const onlyDayYearFormat = (EpocTimeInSec) => { const options = { year: 'numeric', month: 'long', day: 'numeric'}; return (new Date(parseInt(EpocTimeInSec))).toLocaleString('en-US', options) }