Calc The Probot Tax
npm install probot-taxnpm i probot-tax --saveFor Example in discord.js
````
const probot = require("probot-tax");
client.on("message", message => {
if(message.content.startsWith(prefix + 'tax')) {
message.channel.send(probot.taxs(10))
}
})