Basically, I want to do a myMoment >= yourMoment. There is no myMoment.isSameOrAfter and writing that out combining isSame and .i
myMoment >= yourMoment
myMoment.isSameOrAfter
isSame
.i
Okay, I just went with the moment.js .diff() function.
myMoment.diff(yourMoment) >= 0
Close enough.