UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

6 lines (5 loc) 356 B
import mergeWith from 'lodash.mergewith'; const overrideEverything = (_, source) => source; export const mergeDeep = (target, source) => mergeWith(target, source, overrideEverything); const overrideUndefinedOnly = (object, source) => object ?? source; export const mergeDeepUndefined = (target, source) => mergeWith(target, source, overrideUndefinedOnly);