A file splitting & merging solution.
Split file from a path with split
function.
import { split } from "@filego/js";
const file: File | Blob | Uint8Array | string = "";
await split({
file,
chunkSize: 2 * 1024 * 1024,
});
This project is licensed under the terms of the MIT license.