94f52fb2bb1371ad12dc4efe85e1051d3afacab7f19c2b84a4f3d63dc550de2c6bdd36ac2b7de74ff4899c969b96894b3b4807828dc43568274406a9a28549 314 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. export default setCacheHas;