@aeroware/discord-utils

this is a small package full of discord.js utilities.

Usage no npm install needed!

<script type="module">
  import aerowareDiscordUtils from 'https://cdn.skypack.dev/@aeroware/discord-utils';
</script>

README

discord-utils

this is a small package full of discord.js utilities.

there are methods for formatting, getting input, and pagination.

here is a small example of it in action:

es6 import/export

import { aDelayOf } from "@aeroware/discord-utils";

...
await aDelayOf(1000); // wait one second
...

nodejs require

const { aDelayOf } = require("@aeroware/discord-utils").default;

...
await aDelayOf(1000); // wait one second
...

you can read the docs on our github page