Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Calvin-Huang/d9a51a180d417653ab25e673294baba4 to your computer and use it in GitHub Desktop.
Save Calvin-Huang/d9a51a180d417653ab25e673294baba4 to your computer and use it in GitHub Desktop.
const pingEpic = action$ =>
action$.filter(action => action.type === 'PING')
.mapTo({ type: 'PONG' });
// later...
dispatch({ type: 'PING' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment