Skip to content

Instantly share code, notes, and snippets.

@xcoderzach
Created February 20, 2015 18:56
Show Gist options
  • Save xcoderzach/486d682ecace9260af85 to your computer and use it in GitHub Desktop.
Save xcoderzach/486d682ecace9260af85 to your computer and use it in GitHub Desktop.
window.oldWS = window.WebSocket
window.sockets = []
window.WebSocket = function() {
var ws = oldWS.apply(this, arguments);
window.sockets.push(ws);
return ws;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment