UNPKG

link.land

Version:

Bypass linkvertise, ad.fly, bit.ly, and cut.ly links in one package

20 lines (16 loc) 355 B
const axios = require("axios").default; /** * * @param {String} url * @returns JSON Body */ module.exports = (url) => { let options = { method: "POST", url: "https://api.bypass.vip/", headers: { "Content-Type": "application/json" }, data: { url: url }, }; let res = axios.request(options); return res; };