multi-file-get
v1.1.0
Published
for multi files download
Readme
multi-file-get
Install
yarn add multi-file-getnpm i multi-file-getUsage
import multiDownload from "multi-file-get";
const urls = [
"url1",
"url2",
"url3",
];
let handleDownload = (urls) => {
multiDownload(urls);
};