Skip to content

Instantly share code, notes, and snippets.

@rubenmarcus
Created April 18, 2020 13:21
Show Gist options
  • Save rubenmarcus/cddc98842e168b0609a416106f54b4f6 to your computer and use it in GitHub Desktop.
Save rubenmarcus/cddc98842e168b0609a416106f54b4f6 to your computer and use it in GitHub Desktop.
const pingPongEpic = action$ =>
action$.filter(action => action.type === 'PING')
.delay(1000)
.map(action => ({ type: 'PONG' }))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment