mirror of
https://github.com/danbulant/nekos
synced 2026-06-22 08:01:46 +00:00
10 lines
No EOL
278 B
JavaScript
10 lines
No EOL
278 B
JavaScript
import "zx/globals";
|
|
|
|
$.verbose = false;
|
|
|
|
async function download(url) {
|
|
const file = url.substr(`https://cdn.nekos.life/`.length);
|
|
const target = path.join("~/images/nekos.life/", file);
|
|
if(fs.existsSync(target)) return;
|
|
await $`curl -fsSLO ${target} ${url}`;
|
|
} |