Skip to content

Commit 2dabd82

Browse files
ckoheniCrawl
authored andcommittedJan 7, 2022
fix(sweepers): provide default for object param (#7182)
1 parent 780b7ed commit 2dabd82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/util/Sweepers.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -375,11 +375,11 @@ class Sweepers {
375375
* Sweep a direct sub property of all guilds
376376
* @param {string} key The name of the property
377377
* @param {Function} filter Filter function passed to sweep
378-
* @param {SweepEventOptions} [eventOptions] Options for the Client event emitted here
378+
* @param {SweepEventOptions} [eventOptions={}] Options for the Client event emitted here
379379
* @returns {Object} Object containing the number of guilds swept and the number of items swept
380380
* @private
381381
*/
382-
_sweepGuildDirectProp(key, filter, { emit = true, outputName }) {
382+
_sweepGuildDirectProp(key, filter, { emit = true, outputName } = {}) {
383383
if (typeof filter !== 'function') {
384384
throw new TypeError('INVALID_TYPE', 'filter', 'function');
385385
}

0 commit comments

Comments
 (0)
Please sign in to comment.