mirror of
https://github.com/danbulant/discord.js
synced 2026-07-05 11:10:38 +00:00
Webpack build for branch data-store-refactor: 80b644b35fe2090bb5ef1f0857776dc13ae9b194
This commit is contained in:
parent
a3e666d43f
commit
94f2820df3
2 changed files with 4 additions and 12 deletions
|
|
@ -3666,11 +3666,7 @@ class Base {
|
||||||
* @type {Client}
|
* @type {Client}
|
||||||
* @readonly
|
* @readonly
|
||||||
*/
|
*/
|
||||||
Object.defineProperty(this, 'client', {
|
Object.defineProperty(this, 'client', { value: client });
|
||||||
value: client,
|
|
||||||
enumerable: false,
|
|
||||||
writable: false,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_clone() {
|
_clone() {
|
||||||
|
|
@ -9814,7 +9810,7 @@ module.exports = GuildMember;
|
||||||
const Collection = __webpack_require__(3);
|
const Collection = __webpack_require__(3);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A data store what else????
|
* A data store
|
||||||
* @class DataStore
|
* @class DataStore
|
||||||
* @extends {Collection}
|
* @extends {Collection}
|
||||||
*/
|
*/
|
||||||
|
|
@ -9822,11 +9818,7 @@ class DataStore extends Collection {
|
||||||
constructor(client, iterable) {
|
constructor(client, iterable) {
|
||||||
super(iterable);
|
super(iterable);
|
||||||
|
|
||||||
Object.defineProperty(this, 'client', {
|
Object.defineProperty(this, 'client', { value: client });
|
||||||
value: client,
|
|
||||||
enumerable: false,
|
|
||||||
writable: false,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Stubs
|
// Stubs
|
||||||
|
|
|
||||||
2
discord.data-store-refactor.min.js
vendored
2
discord.data-store-refactor.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue