UNPKG

miau-api

Version:

Es una api que te da imagenes de gatos.

10 lines (8 loc) 216 B
const fetch = require('node-fetch') module.exports = { gato: async function () { let dataApi = fetch('http://aws.random.cat/meow') .then(res => res.json()) return dataApi.image; } }