1.7.1 ā€¢ Published 3 months ago

utilscord v1.7.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Utilscord

šŸ› ļø It was created to make writing Discord bots faster and more convenient.

šŸš€ Changes

  • Errors have been made more visible for Anti Crash, however, how many errors you receive during the time your application is running will be displayed.
  • We created a Table class prepared with Canvas that you can edit however you want.
  • We changed the name AdvancedEmbedType to EmbedType.
  • OneHalfSecond (30 seconds), OneQuarterSecond(15 seconds) were added to the Time object.
  • Added findAndGetEmojis, getEmoji.

šŸ… A few usage examples

const { trim, findAndGetEmojis, captalize } = require("utilscord");
/* import { trim, findAndGetEmojis, captalize } from "utilscord"; */

const message = "This module is very nice.";
const abbreviatedMessage = trim(message, 10);

console.log(abbreviatedMessage); // Output --> "This mo..."

const updateMsg = "Hello šŸ‘‹, new update available today! <:update:986539100221874176>";
const emojis = findAndGetEmojis(updateMsg);

console.log(emojis) // Output --> ["šŸ‘‹", "<:update:986539100221874176>"]

const name = "rOmAn";
const editedName = captalize(name);

console.log(editedName) // Output --> "Roman"

More? Take a look at its documentation!

šŸž I found a bug!

šŸ“± If you want to reach me, you can reach me via Discord!

1.7.1

3 months ago

1.7.0

3 months ago

1.6.0

4 months ago

1.5.0

4 months ago

1.4.0

4 months ago

1.3.0

4 months ago

1.2.0

5 months ago

1.0.1

6 months ago

1.0.0

6 months ago