aleph

2019-10-03T06:21:40.015Z

thanks @cddr where does the inflate fn come from? or is that just a function you have written your self?

2019-10-03T06:22:55.016100Z

@cddr that is what I have settled on too but wrote my on decompression function so was wondering if there was something to do it that I had missed

2019-10-03T09:52:48.017300Z

Ah yeah inflate is just a placeholder for whatever you have that decompresses the response.

mccraigmccraig 2019-10-03T10:40:39.019100Z

@sofra our http client checks headers to detect whether responses are compressed and decompresses them as necessary - here it is - there are private deps, so you won't be able to use it directly, but parts of it may be useful - https://gist.github.com/mccraigmccraig/7e44ff82d9fb66f6809614f1ed65cd04

👍 1
2019-10-03T11:05:54.019500Z

thanks @mccraigmccraig!