You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/utils/checkHapi.js

10 lines
218 B
JavaScript

const fetch = require('node-fetch');
const { Hapi } = require('../config.json');
module.exports = async function () {
if (Hapi) {
var res = await fetch(Hapi);
return res.status === 200;
} else
return false;
};