Throw unless date is a Date holding a real instant (new Date(NaN) and non-Dates are rejected).
date
Date
new Date(NaN)
RangeError
assertValidDate(new Date('2026-07-02T00:00:00Z')); // passes Copy
assertValidDate(new Date('2026-07-02T00:00:00Z')); // passes
Throw unless
dateis aDateholding a real instant (new Date(NaN)and non-Dates are rejected).