mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 05:32:09 +03:00
10 lines
244 B
TypeScript
10 lines
244 B
TypeScript
// Loaded from https://deno.land/x/validasaur/src/rules/is_date.ts
|
|
|
|
|
|
import type { Validity } from "../types.ts";
|
|
import { dateChecks } from "../utils.ts";
|
|
|
|
export function isDate(value: any): Validity {
|
|
return dateChecks(value, "isDate");
|
|
}
|