Skip to content

Instantly share code, notes, and snippets.

@WimJongeneel
Created October 25, 2020 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WimJongeneel/bcf2c0eebb9c44360f39f064550fb3b8 to your computer and use it in GitHub Desktop.
Save WimJongeneel/bcf2c0eebb9c44360f39f064550fb3b8 to your computer and use it in GitHub Desktop.
/**
* creates a continuation of Event that outputs values whenever a key gets pressed
*/
const keyboard = () => create_cont<Event>(cb => {
document.addEventListener('keypress', cb)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment