Kholiavko Roman
Kholiavko Roman
The bundle size was increased even more in the last versions 😔
@m1aw I am using 5.15.0 How we can use a `lib/dist/es.modern/` version of lib if we just using just the npm package?
I have an issue with 0.7.18 version, If I enable "Network inspect" in contextual menu. `fetch.js:231 Uncaught Error: unsupported BodyInit type` react-native: 0.55.2 OS: Ubuntu 17.10
I install from master branch the latest version and `onError` now works.
@timwangdev, thank, I will try. Do you know, can I set up language of decoding information ? For example I have users with deutsch language on their phone, and I...
We fixed this by overriding dependencies `d3-` for react simple maps. Add this to `package.json` ``` "overrides": { "react-simple-maps": { "d3-geo": "^3.1.0", "d3-selection": "^3.0.0", "d3-zoom": "^3.0.0" } } ```
Yes, as **mbifulco** tell, the problem is because node js doesn`t support await. After install node 8.8.1 all works fine! Thanks.
I try to copy all base64 after all chunks received, and paste it to some decoder, [like this one ](https://onlinejpgtools.com/convert-base64-to-jpg) But it return an error too. Also If I copy...
But if I use `fs.readFile` with `base64` encoding and try to write file - all works fine. ```javascript const { fs } = RNFetchBlob; fs .exists(file.image.path) .then(exist => { console.log('Send...
I created this code as example for issue. In my case I try to test sending file using web-sockets, and my plan was using readStream and by small pieces sent...