UNPKG

stream-chat-react-native-core

Version:

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

8 lines (6 loc) 161 B
export const mapDateTimeToStorable = (datetime?: string | Date | null) => { if (!datetime) { return ''; } return new Date(datetime).toISOString(); };