mirror of
https://github.com/danbulant/discord.js
synced 2026-06-20 23:21:04 +00:00
Webpack build for branch master: 39013b1242
This commit is contained in:
parent
99e17f7ee3
commit
56123a2887
1 changed files with 5 additions and 9 deletions
|
|
@ -1061,23 +1061,19 @@ class Collection extends Map {
|
|||
|
||||
/**
|
||||
* Searches for the existence of a single item where its specified property's value is identical to the given value
|
||||
* (`item[prop] === value`), or the given function returns a truthy value.
|
||||
* (`item[prop] === value`).
|
||||
* <warn>Do not use this to check for an item by its ID. Instead, use `collection.has(id)`. See
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/has) for details.</warn>
|
||||
* @param {string|Function} propOrFn The property to test against, or the function to test with
|
||||
* @param {*} [value] The expected value - only applicable and required if using a property for the first argument
|
||||
* @param {string} prop The property to test against
|
||||
* @param {*} value The expected value
|
||||
* @returns {boolean}
|
||||
* @example
|
||||
* if (collection.exists('username', 'Bob')) {
|
||||
* console.log('user here!');
|
||||
* }
|
||||
* @example
|
||||
* if (collection.exists(user => user.username === 'Bob')) {
|
||||
* console.log('user here!');
|
||||
* }
|
||||
*/
|
||||
exists(propOrFn, value) {
|
||||
return Boolean(this.find(propOrFn, value));
|
||||
exists(prop, value) {
|
||||
return Boolean(this.find(prop, value));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue