DEV Community

Discussion on: Can I Get Some Feedback? (Moment.js in particular)

Collapse
 
unbrandedtech profile image
James Kenaley

Shouldn't the cutoff check use the isBefore function?

if (now > todaysCutoff)
if (now.isBefore(todaysCutoff))
Collapse
 
jackharner profile image
Jack Harner πŸš€

The way I had it written it needed isAfter instead, but this is the exact kind of feedback I was looking for. Thank you.