Moment.now can be used as an extension point, but it really is not a public API. To get the current time in momentjs, you simply call moment() . Note that all time calls use the lowercase letters moment .
To find out if your date and time is up to the current time, you simply call:
moment('01/01/2016', 'MM/DD/YYYY').isBefore(moment())
You would replace the date and format with your question.
I see that you have a date format that includes only the day of the week and time. Moment will analyze this, but keep in mind that the behavior may not be what you expect. When I parse your date, I get Wednesday December 30, 2015. Exactly what day these lands will vary by region. In any case, I doubt that this is what you want. If at all possible, I get a year, a month and a day.
If you want to instead set this point on Wednesday this week, set the day at that moment using .day() . For instance:
moment().day(3).format() "2016-06-15T20:19:55-05:00"
source share