UNPKG

lolis-random

Version:

> Simple NPM para generar lolis.

11 lines (8 loc) 250 B
const fetch = require('node-fetch'); module.exports = { getLoli: async function () { let dataAPI = await fetch('https://api.lolis.life/kawaii') .then(res => res.json()); return dataAPI.message; } }