We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 076d2a7 commit ba0f140Copy full SHA for ba0f140
src/utils/typeguards.ts
@@ -57,7 +57,11 @@ export function isDayOfWeekType(value: unknown): value is DayOfWeek {
57
return Boolean(value && typeof value === "object" && "dayOfWeek" in value);
58
}
59
60
-/** Returns true if `value` is an array of valid dates. */
+/**
61
+ * Returns true if `value` is an array of valid dates.
62
+ *
63
+ * @private
64
+ */
65
export function isDatesArray(
66
value: unknown,
67
dateLib: DateLib
0 commit comments