JSFiddle - React, Tailwind, and code Playground
by timrwood
HTML
<script src="https://raw.github.com/timrwood/moment/1.7.2/moment.js"></script>
JavaScript
function log(msg) {
$('body').append('<p>' + msg + '</p>');
}
var input = 'Mon Jun 25 16:33:12 +0000 2012',
format = 'ddd MMM DD HH:mm:ss ZZ YYYY';
log(moment(input, format).format(format));
log(moment.utc(input, format).format(format));