1
2
3
4
5
import { fetch } from "https://esm.town/v/std/fetch";
export async function checkHfs(url: string) {
const res = await (await fetch(url)).text();
return res.includes("HFS");
}