probot-tax-c
v1.0.2
Published
Simple package to calculate probot tax
Downloads
1
Readme
Hello in my first package
this package made for probot tax
How to install?
npm i probot-tax-c
How To Use
Example in discord.js
const tax = require("probot-tax-c");
client.on("message", message => {
if(message.content.startsWith(prefix + 'tax')) {
const args = message.content.split(' ').slice(1)
if(!args) return message.channel.send(`Invaild Args.`)
if(isNaN(args)) return message.channel.send(`Not A Number.`)
message.channel.send(tax.calc(args))
}
})