UNPKG
shitpost-images-generator
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
> Retorna imagenes de memes de la grasa o shitpost
shitpost-images-generator
/
index.js
12 lines
(8 loc)
•
254 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
fetch =
require
(
'node-fetch'
)
module
.
exports
= {
shitpost
:
async
function
(
){
let
dataApi =
await
fetch
(
"https://tenor.com/search/shitpost-gifs"
) .
then
(
res
=>
res.
json
());
return
dataApi.
message
; } }