UNPKG

stream-chat-react-native-core

Version:

The official React Native and Expo components for Stream Chat, a service for building chat applications

9 lines (5 loc) 273 B
import Dayjs from 'dayjs'; import type { Moment } from 'moment-timezone'; import { TDateTimeParserOutput } from './types'; export const isDayOrMoment = (output: TDateTimeParserOutput): output is Dayjs.Dayjs | Moment => (output as Dayjs.Dayjs | Moment).isSame != null;