UNPKG

discord-bot-cli

Version:

An easy way to build a command-based discord bot with discord.js.

14 lines (13 loc) 318 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.distinct = exports.isArray = void 0; /** @internal */ function isArray(o) { return Array.isArray(o); } exports.isArray = isArray; /** @internal */ function distinct(a) { return [...new Set(a)]; } exports.distinct = distinct;