isDate
Basic usage
Determine if a value is a Date. Does not check that the input date is valid, only that it is a Javascript Date type.
import { isDate } from 'radash'
isDate(new Date()) // => trueisDate(12) // => falseisDate('hello') // => false