mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
19 lines
516 B
TypeScript
19 lines
516 B
TypeScript
// Loaded from https://deno.land/x/validasaur/src/rules/date_before_or_equal.ts
|
|
|
|
|
|
import type { Validity, Rule } from "../types.ts";
|
|
import { clearTimes, dateChecks } from "../utils.ts";
|
|
|
|
export function dateBeforeOrEqual(date: Date): Rule {
|
|
return function dateBeforeOrEqualRule(value: any): Validity {
|
|
return dateChecks(
|
|
value,
|
|
"dateBeforeOrEqual",
|
|
{ date },
|
|
(input: Date): boolean => {
|
|
return clearTimes(input).getTime() <= clearTimes(date).getTime();
|
|
},
|
|
);
|
|
};
|
|
}
|