UNPKG

zent

Version:

一套前端设计语言和基于React的实现

6 lines (4 loc) 159 B
const toString = Object.prototype.toString; export default function isDate(value?: any): value is Date { return toString.call(value) === '[object Date]'; }