isDate.ts 115 B

123
  1. export default function isDate(date: any) {
  2. return Object.prototype.toString.call(date) === '[object Date]';
  3. }