diff --git a/lib/superagent.js b/lib/superagent.js index 8c7127709..4569b6bba 100644 --- a/lib/superagent.js +++ b/lib/superagent.js @@ -567,10 +567,10 @@ */ Request.prototype.end = function(fn){ - var self = this - , xhr = this.xhr = getXHR() - , query = this._query - , data = this._data; + var self = this; + var xhr = this.xhr = getXHR(); + var query = this._query; + var data = this._data; // store callback this.callback = fn || noop;