How to slice a file into chunks in react-native

Viewed 1285
ImagePicker.launchImageLibrary(options, (response) => {
  createChunks(response);
});

I got file uri,path from imagepicker, i want to divide the file into chunks and upload as form data,How to divide the media file(mp4,etc) into chunks in react-native.

0 Answers
Related