React Code Snippets
Components and utilities for modern React applications.
const fileToBase64 = (file) =>
new Promise((resolve, reject) => {
const reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = () => resolve(reader.result);
reader.onerror = reject;
});
fileToBase64(file) // any type of image, zip, txt or another file that want