DaysUntil accepts a momentJS object with a birthday date which returns amount of days left
##Using a momentJS object with the day of your next birthday
function daysUntil(date) {
var birthday = moment(date);
var today = moment().format("YYYY-MM-DD");
if (birthday.isSame(today)) {