new error propagation - follows

This commit is contained in:
yawnt 2013-09-05 17:45:03 +02:00
parent 3a39e444ff
commit 1993faf8a4

View File

@ -3,12 +3,11 @@ var Duplex = require('stream').Duplex,
http = require('http'),
https = require('https');
function WebsocketStream(options, res, instance) {
function WebsocketStream(options, res) {
Duplex.call(this);
this.options = options;
this.res = res;
this.instance = intance;
var self = this;