UNPKG

rizfurr-api

Version:
9 lines (7 loc) 285 B
const fetch = require("node-fetch"); module.exports = async function () { dts = await fetch("https://raw.caliph.my.id/quotesanime.json"); json = await dts.json(); random = json[Math.floor(Math.random() * json.length)]; return { status: dts.status, result: random }; }.bind();