export function send()

in src/store/actions/dispatcher.js [108:116]


export function send(playload, text = '', customStore) {
  if (customStore) {
    customStore.dispatch(actions.emitUserMessage(playload));
    if (text !== '') customStore.dispatch(actions.addUserMessage(text));
    return;
  }
  store.dispatch(actions.emitUserMessage(playload));
  if (text !== '') store.dispatch(actions.addUserMessage(text));
}