Takes a string and a date object, returns what you expect
npm install format-dateTakes a string and a date object, returns what you expect.
``bash`
$ npm install format-date
js
var formatDate = require('format-date');formatDate('{month}/{day}/{year}', new Date());
// 21/09/2014
formatDate('{hours}:{minutes}:{seconds} {day-name}', new Date());
// 13:30:53 Monday
formatDate('{month-name} {year}', new Date());
// January 2014
``* day
* day-name
* month
* month-name
* year
* hours
* minutes
* seconds
UTC
* utc-day
* utc-day-name
* utc-month
* utc-month-name
* utc-year
* utc-hours
* utc-minutes
* utc-seconds