UNPKG

145 BPlain TextView Raw
1import isType from './is-type';
2
3const isDate = function(value: any): value is Date {
4 return isType(value, 'Date');
5};
6
7export default isDate;