import nfetch from "node-fetch";

async function fetchHtml (url: string) {
    try {
        const res = await nfetch(url, {});
        return res.text();
    }
    catch (err) {
        throw err;
    }
}

export default fetchHtml;