v1.0.1
Utility data structure for Deno (Discord.js Collection).
Repository
Current version released
4 years ago
Versions
Collection
Utility data structure for Deno (Original Author: Discord.js Developers).
NodeJS
Example
import { Collection } from "https://deno.land/x/collection/mod.ts";
const store = new Collection();
store.set("test", { value: "asdf", id: 1 });
const data = store.find(x => x.id === 1).value;
Documentation
https://discord.js.org/#/docs/collection/master/general/welcome