Skip to content

isDate

값이 Date 객체인지 확인합니다.

typescript
function isDate(value: unknown): value is Date;
typescript
import { isDate } from '@teamsparta/utils';

isDate(new Date()); // true
// 유효하지 않은 Date 객체도 Date 객체로 인식합니다.
isDate(new Date('invalid')); // true
isDate({}); // false