UNPKG

mtg-calls-scraper

Version:
7 lines 208 B
module.exports = { getCard: async (card) => { const http = new XMLHttpRequest(); http.open("GET", `https://api.scryfall.com/cards/search?q=${card}`, false); return http.responseText; } }