| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | /** |
| 2 | * This function is like `arrayIncludes` except that it accepts a comparator. |
| 3 | * |
| 4 | * @private |
| 5 | * @param {Array} [array] The array to inspect. |
| 6 | * @param {*} target The value to search for. |
| 7 | * @param {Function} comparator The comparator invoked per element. |
| 8 | * @returns {boolean} Returns `true` if `target` is found, else `false`. |
| 9 | */ |
| 10 | function arrayIncludesWith(array, value, comparator) { |
| 11 | var index = -1, |
| 12 | length = array == null ? 0 : array.length; |
| 13 | |
| 14 | while (++index < length) { |
| 15 | if (comparator(value, array[index])) { |
| 16 | return true; |
| 17 | } |
| 18 | } |
| 19 | return false; |
| 20 | } |
| 21 | |
| 22 | module.exports = arrayIncludesWith; |