Date.isPast
$date.isPast() -> boolean
Description
Return true
is Date object is before the current time.
$now = Date.now() $lastWeek = $now.add('-7 days') $nextWeek = $now.add('7 days') $now.isPast() //= false $lastWeek.isPast() //= true $nextWeek.isPast() //= false