klae-djs
v10.0.0
Published
A package that for you to power up you bot :D
Downloads
8
Readme
klae-djs
klae-djs is a package that powers up your bot!
Install:
npm i klae-djs
Change Logs:
Usage:
Run In Terminal
const { Run } = require("klae-djs");
Run(`code here`, <DJS_Message>);
Discord.js V14 Intents:
const { Intents } = require("klae-djs");
const {Client} = require("discord.js");
const client = new Client({
intents: Intents.ALL
});
Is Divisible
const { isDivisible } = require("klae-djs");
// Examples:
isDivisible(3, 4) // -> false
isDivisible(1, 2) // -> false
isDivisible(4, 2) // -> true
Shuffle
const {shuffle} = require("klae-djs");
shuffle([`test`, `ops`,`haha`,`hehe`]); // shuffle the array