Skip to content

Instantly share code, notes, and snippets.

@laser
Created September 24, 2014 05:58
Show Gist options
  • Save laser/12c46799ccee0b434e4f to your computer and use it in GitHub Desktop.
Save laser/12c46799ccee0b434e4f to your computer and use it in GitHub Desktop.
messages
var messages = connections.flatMap(function(socket) {
return Bacon.fromBinder(function(sink) {
socket.on('message', function(txt) {
sink({ author: socket, txt: txt });
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment