01c6f7b80d5c57659a5f745670015e9f8d8f9e23ddee7177530a73f23a4fc8c4a7eeef25819b66a7f1b3c44aa386a891313e0ddd5b4ba453ec1f9114808fb7 316 B

1234567891011121314
  1. /**
  2. * Checks if `value` is in the array cache.
  3. *
  4. * @private
  5. * @name has
  6. * @memberOf SetCache
  7. * @param {*} value The value to search for.
  8. * @returns {number} Returns `true` if `value` is found, else `false`.
  9. */
  10. function setCacheHas(value) {
  11. return this.__data__.has(value);
  12. }
  13. module.exports = setCacheHas;