Files
eh-downloader/test_base.ts
2023-05-19 11:57:36 +08:00

11 lines
326 B
TypeScript

import { exists } from "https://deno.land/[email protected]/fs/exists.ts";
export const API_PERMISSION: Deno.PermissionOptions = {
read: ["./config.json"],
net: ["e-hentai.org", "exhentai.org"],
};
export async function remove_if_exists(f: string) {
if (await exists(f)) await Deno.remove(f, { "recursive": true });
}