Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 wiersze
316 B

4 lat temu
  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;