Skip to content

Instantly share code, notes, and snippets.

@mstade
Created November 1, 2015 23:13
Show Gist options
  • Save mstade/249b017fa04c53e80d50 to your computer and use it in GitHub Desktop.
Save mstade/249b017fa04c53e80d50 to your computer and use it in GitHub Desktop.
(automaton init
(init : (c → more))
(more : (a → more)
(d → more)
(r → end))
(end : ))
@mstade
Copy link
Author

mstade commented Nov 1, 2015

http['is_service_available'] = (req, res) => {
  console.log(req, res)
  return true
}

@mstade
Copy link
Author

mstade commented Nov 1, 2015

let it = http(req, res)
it.next(req, res)
it.next(req, res)
...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment