adopted-ember-addons / ember-moment

MIT License
400 stars 122 forks source link

How to format epoch string #266

Closed fayaz-rvce closed 6 years ago

fayaz-rvce commented 6 years ago

Can anyone help me format a epoch timestring to desired format. What is the correct syntax for it?

jasonmit commented 6 years ago
import moment from 'moment';

let epocString = '1514263410';

moment.unix(epocString).format() /* => "2017-12-25T20:43:30-08:00" */