2020-07-05 08:33:36 +08:00

9 lines
191 B
TypeScript

import { isNaN } from './number';
export function isDate(val: Date): val is Date {
return (
Object.prototype.toString.call(val) === '[object Date]' &&
!isNaN(val.getTime())
);
}