void.nsfw
Support: https://voiddevs.org/dc
NPM: npmjs.com/package/void.nsfw
It is not only used for discord.js, it can work wherever javascript is used.
Example
const v = require("void.nsfw");
console.log(await v.ping())
console.log(await v.hentai())
console.log(await v.pussy())
console.log(await v.pgif())
console.log(await v.four())
Installation
If you have trouble with the installation, please feel free to visit our discord address.
Simple discord.js Command;
const v = require('void.nsfw')
const Discord = require("discord.js");
exports.run = async (client, message, args) => {
if(message.channel.nsfw == true) {
message.channel.send(new Discord.MessageEmbed().setColor("RANDOM").setImage(await v.hentai())
} else {
message.channel.send(new Discord.MessageEmbed().setTitle("ERROR").setColor("RED").setDescription("This channel nsfw content is off, please try again after turning it on.").setImage("https://img.devsforum.net/tr/img/o9Z9V3.png"))
}
}
module.exports.conf = {
enabled: true,
guildOnly: false,
aliases: []
};
module.exports.help = {
name: 'hentai',
description: '',
usage: ''
};