3.0.0
ChangeLog
[3.0.0] - 21-11-2021
- [#10] Store and pass the proxy response data as an
Uint8Array
instead of
always decoding to a string (#11)
This impacts:
Where the proxyResData
argument will be of type Uint8Array|null
and not
string|null
. If you require the value to be a string, you will need to decode
it yourself using, e.g.
new TextDecoder().decode(proxyResData);