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.

isSet.js 613B

123456789101112131415161718192021222324252627
  1. var baseIsSet = require('./_baseIsSet'),
  2. baseUnary = require('./_baseUnary'),
  3. nodeUtil = require('./_nodeUtil');
  4. /* Node.js helper references. */
  5. var nodeIsSet = nodeUtil && nodeUtil.isSet;
  6. /**
  7. * Checks if `value` is classified as a `Set` object.
  8. *
  9. * @static
  10. * @memberOf _
  11. * @since 4.3.0
  12. * @category Lang
  13. * @param {*} value The value to check.
  14. * @returns {boolean} Returns `true` if `value` is a set, else `false`.
  15. * @example
  16. *
  17. * _.isSet(new Set);
  18. * // => true
  19. *
  20. * _.isSet(new WeakSet);
  21. * // => false
  22. */
  23. var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;
  24. module.exports = isSet;