Version: v0.7.1 - Beta.  We welcome contributors & feedback.

Date.isAfter

$date.isAfter($otherDate) -> boolean

Description

Return true is Date object is after $otherDate.

$otherDate can be one of the following:

$now = Date.now()

$lastWeek = $now.add('-7 days')
$nextWeek = $now.add('7 days')

$nextWeek.isAfter($now)
//= true

$lastWeek.isAfter('tomorrow')
//= false

See Also