Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_setCacheHas.js 316B

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;