A stream that emits when the locale changes.
Clamp the given date between min and max dates.
The date to clamp.
The minimum value to allow. If null or omitted no min is enforced.
The maximum value to allow. If null or omitted no max is enforced.
min
if date
is less than min
, max
if date is greater than max
,
otherwise date
.
Compares two dates.
The first date to compare.
The second date to compare.
0 if the dates are equal, a number less than 0 if the first date is earlier, a number greater than 0 if the first date is later.
Returns the given value if given a valid Moment or null. Deserializes valid ISO 8601 strings (https://www.ietf.org/rfc/rfc3339.txt) and valid Date objects into valid Moments and empty string into null. Returns an invalid date for all other values.
Given a potential date object, returns that same date object if it is
a valid date, or null
if it's not a valid date.
The object to check.
A date or null
.
Checks if two dates are equal.
The first date to check.
The second date to check.
Whether the two dates are equal. Null dates are considered equal to other null dates.
Generated using TypeDoc
The locale to use for all dates.