πͺwhois
Syntax and example usage
bot.whois('NICKNAME').then((whoisData) => {
}).catch((err) => {
});Parameters
Example Usage
bot.whois('NICKNAME').then((whoisData) => {
// Object with all whois information
console.log(whoisData);
})
.catch((err) => {
console.error('WHOIS error:', err);
});Response structure
Last updated