File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -1302,11 +1302,9 @@ return /******/ (function(modules) { // webpackBootstrap
1302
1302
contentType = this . xhr . getResponseHeader ( 'Content-Type' ) ;
1303
1303
} catch ( e ) { }
1304
1304
if ( contentType === 'application/octet-stream' ) {
1305
- if ( this . xhr . responseType === 'arraybuffer' ) {
1306
- data = this . xhr . response || this . xhr . responseText ;
1307
- } else {
1308
- data = String . fromCharCode . apply ( null , new Uint8Array ( this . xhr . response ) ) ;
1309
- }
1305
+ data = this . xhr . response || this . xhr . responseText ;
1306
+ } else if ( this . xhr . responseType === 'arraybuffer' ) {
1307
+ data = String . fromCharCode . apply ( null , new Uint8Array ( this . xhr . response ) ) ;
1310
1308
} else {
1311
1309
data = this . xhr . responseText ;
1312
1310
}
Original file line number Diff line number Diff line change 2
2
"name" : " engine.io-client" ,
3
3
"description" : " Client for the realtime Engine" ,
4
4
"license" : " MIT" ,
5
- "version" : " 3.1.5 " ,
5
+ "version" : " 3.2.0 " ,
6
6
"main" : " lib/index.js" ,
7
7
"homepage" : " https://github.com/socketio/engine.io-client" ,
8
8
"contributors" : [
45
45
"concat-stream" : " ^1.6.0" ,
46
46
"del" : " ^2.2.2" ,
47
47
"derequire" : " ^2.0.6" ,
48
- "engine.io" : " 3.1.5 " ,
48
+ "engine.io" : " 3.2.0 " ,
49
49
"eslint-config-standard" : " 4.4.0" ,
50
50
"eslint-plugin-standard" : " 1.3.1" ,
51
51
"expect.js" : " ^0.3.1" ,
You can’t perform that action at this time.
0 commit comments