Filip Bartuzi
Filip Bartuzi

Reputation: 5931

Date formatter from RSS feed to "time.ago"

Im trying to create RSS feed webpage and RSS answer with date formatted this "Thu, 15 Aug 2013 12:42:05 -0700" wat and I want to change it intom for example "12 minutes ago". I tried http://timeago.yarp.com/ but it doesn't really work with this format. I want to achieve this in javascript. Any suggestions?

Upvotes: 0

Views: 96

Answers (1)

Chris
Chris

Reputation: 1274

Check out moment.js, usage:

moment("Thu, 15 Aug 2013 12:42:05 -0700").fromNow() // 8 hours ago

Upvotes: 1

Related Questions