Skip to content

Commit 002e23c

Browse files
committed
remove invalid value for strict mode (#344)
1 parent 51f0528 commit 002e23c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/transports/polling.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = Polling;
2020

2121
var hasXHR2 = (function() {
2222
var XMLHttpRequest = require('xmlhttprequest');
23-
var xhr = new XMLHttpRequest({ agent: this.agent, xdomain: false });
23+
var xhr = new XMLHttpRequest({ xdomain: false });
2424
return null != xhr.responseType;
2525
})();
2626

0 commit comments

Comments
 (0)