summaryrefslogtreecommitdiff
path: root/node_modules/discord.js/src/util/Collection.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/discord.js/src/util/Collection.js')
-rw-r--r--node_modules/discord.js/src/util/Collection.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/discord.js/src/util/Collection.js b/node_modules/discord.js/src/util/Collection.js
new file mode 100644
index 0000000..3219fb8
--- /dev/null
+++ b/node_modules/discord.js/src/util/Collection.js
@@ -0,0 +1,17 @@
+'use strict';
+
+const BaseCollection = require('@discordjs/collection');
+const Util = require('./Util');
+
+class Collection extends BaseCollection {
+ toJSON() {
+ return this.map(e => (typeof e.toJSON === 'function' ? e.toJSON() : Util.flatten(e)));
+ }
+}
+
+module.exports = Collection;
+
+/**
+ * @external Collection
+ * @see {@link https://discord.js.org/#/docs/collection/master/class/Collection}
+ */