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) 203 B
import type { PendingTask } from 'stream-chat'; export const mapTaskToStorable = (task: PendingTask) => ({ ...task, createdAt: new Date().toISOString(), payload: JSON.stringify(task.payload), });