isValidDate should handle time as well
Open
- Dominant language
- JavaScript
- Stars
- 2k
- Forks
- 858
- PR merge metrics
- No merged PRs in 30d
Description
```
futureDate(current) {
let today = moment();
return current.isAfter(today)
}
```
if i use this function as a validator, it will blur today's day, but it shouldn't.
The day should be available and only hours ans minutes in the future should be available
Contributor guide
Assessment
This issue has not been assessed yet.