mirror of https://github.com/status-im/web3.js.git
reverted unrecognised change
This commit is contained in:
parent
cd1974b883
commit
bcd4625520
|
@ -82,11 +82,11 @@ IpcProvider.prototype._parseResponse = function(data) {
|
|||
|
||||
// DE-CHUNKER
|
||||
var dechunkedData = data
|
||||
.replace(/\}[\n\r]?\{/g,'}|--|{') // }{
|
||||
.replace(/\}\][\n\r]?\[\{/g,'}]|--|[{') // }][{
|
||||
.replace(/\}[\n\r]?\[\{/g,'}|--|[{') // }[{
|
||||
.replace(/\}\][\n\r]?\{/g,'}]|--|{') // }]{
|
||||
.split('|--|');
|
||||
.replace(/\}\{/g,'}|--|{') // }{
|
||||
.replace(/\}\]\[\{/g,'}]|--|[{') // }][{
|
||||
.replace(/\}\[\{/g,'}|--|[{') // }[{
|
||||
.replace(/\}\]\{/g,'}]|--|{') // }]{
|
||||
.split('|--|');
|
||||
|
||||
dechunkedData.forEach(function(data){
|
||||
|
||||
|
|
Loading…
Reference in New Issue