1.1.0 • Published 5 years ago
rasb.js v1.1.0
Table of contents
About
rasb.js is an unofficial Node.js module for interacting with the RASB API.
- Object-oriented
- Performant
Installation
Use the package manager npm to install rasb.js:
npm install rasb.js
Example usage
const rasb = require("rasb.js");
const RASB = new rasb();
RASB.isUserBanned("329991150712651776").then((isUserBanned) => {
if(isUserBanned) {
console.log("User is banned");
} else {
console.log("User is not banned")
}
});
Links
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.