isLeapYear :: Date -> Boolean

Verifies if the year of the date object supplied is a leap year. Returns false if the date object is invalid.

D.isLeapYear(new Date('2015-01-01') // false
D.isLeapYear(new Date('2004-01-01') // true