1
2
3
4
5
6
7
8
9
10
11
import { isUp as isUp2 } from "https://esm.town/v/brenton/isUp?v=8";
export const checkSite = () => {
const isUp = isUp2("https://rodrigotello.me/", 200);
if (!isUp) {
console.email(
"Unexpected status code when checking brntn.me, better go check to see what's happening!",
"brntn.me is down!"
);
}
};