/discord-ban-list-node

Discord Ban List NPM module. DEPRECATED

Primary LanguageJavaScriptOtherNOASSERTION

npm install discord-ban-list

Use this module to check whether a certain Discord user ID has been listed in the Ban List/DiscordList bans or not.

var dbl = require("discord-ban-list");
dbl("1234567890").then(isBanned => {
    console.log(isBanned);
}).catch(console.log);
// If listed on either website then return true, else return false

dbl.wiki("1234567890").then(isBanned => {
    console.log(isBanned);
}).catch(console.log);
// If listed on http://discord.shoutwiki.com/wiki/Ban_List then return true, else return false

dbl.list("1234567890").then(isBanned => {
    console.log(isBanned);
}).catch(console.log);
// If listed on http://bans.discordlist.net then return true, else return false