Year-Month-Day
Simple function that returns an object with props of year, month and day
Usage
const ymd = require('year-month-day')
const day = new Date('01/01/2015')
const result = ymd(day)
console.log(result)
// {
// year: 2015,
// month: 1,
// day: 1
// }