mirror of
https://github.com/danbulant/discord.js
synced 2026-07-05 19:20:42 +00:00
Webpack build: b68283e57a
This commit is contained in:
parent
42ab64e37c
commit
552e124fbe
2 changed files with 5 additions and 3 deletions
|
|
@ -507,17 +507,19 @@ class Collection extends Map {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cached array for the `array()` method - will be reset to `null` whenever `set()` or `delete()` are called.
|
* Cached array for the `array()` method - will be reset to `null` whenever `set()` or `delete()` are called.
|
||||||
|
* @name Collection#_array
|
||||||
* @type {?Array}
|
* @type {?Array}
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
this._array = null;
|
Object.defineProperty(this, '_array', { value: null, writable: true, configurable: true });
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cached array for the `keyArray()` method - will be reset to `null` whenever `set()` or `delete()` are called.
|
* Cached array for the `keyArray()` method - will be reset to `null` whenever `set()` or `delete()` are called.
|
||||||
|
* @name Collection#_keyArray
|
||||||
* @type {?Array}
|
* @type {?Array}
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
this._keyArray = null;
|
Object.defineProperty(this, '_keyArray', { value: null, writable: true, configurable: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
set(key, val) {
|
set(key, val) {
|
||||||
|
|
|
||||||
2
discord.master.min.js
vendored
2
discord.master.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue