prague-blockchain-week/utils/syncTools.js

12 řádky
264 B
JavaScript

import cheerio from "https://esm.sh/cheerio";
export async function loadJSONUrl(url) {
const resp = await fetch(url);
return resp.json();
}
export async function loadHtmlUrl(url) {
const resp = await fetch(url);
return cheerio.load(await resp.text());
}