notmebotz-tools
Version:
Sebuah Tools yang berfungsi untuk mendownload Video atau Foto dari media sosial, serta sebagai tools yang berguna untuk aplikasi kamu seperti untuk BOT
19 lines (17 loc) • 436 B
JavaScript
const axios = require("axios");
const cheerio = require("cheerio");
async function savepin(url) {
try {
const { data } = await axios.get(url);
const $ = cheerio.load(data);
const imgSrc = $("img").first().attr("src") || null;
return {
author: "Herza",
status: 200,
result: imgSrc,
};
} catch {
return { author: "Herza", status: 500, url, result: null };
}
}
module.exports = { savepin }