Skip to content

Instantly share code, notes, and snippets.

@nodech
Created December 25, 2014 15:13
Show Gist options
  • Save nodech/b2fda35e34e4e038232e to your computer and use it in GitHub Desktop.
Save nodech/b2fda35e34e4e038232e to your computer and use it in GitHub Desktop.
Maybe
var users = [];
users = socket.Observable
.on('connect')
.map(function (socket) {
return socket;
})
.until(function () {
return users.length != 10;
});
console.log(users);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment