UNPKG

@getsolara/solara.js

Version:

A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.

10 lines 340 B
module.exports = { name: "$removeDuplicates", description: "Removes duplicate items from a list. Args: item1;item2;...", takesBrackets: true, execute: async (context, args) => { if (args.length === 0) return ""; const uniqueItems = [...new Set(args)]; return uniqueItems.join(';'); } };