source: imaps-frontend/node_modules/lodash-es/isSet.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 611 bytes
Line 
1import baseIsSet from './_baseIsSet.js';
2import baseUnary from './_baseUnary.js';
3import nodeUtil from './_nodeUtil.js';
4
5/* Node.js helper references. */
6var nodeIsSet = nodeUtil && nodeUtil.isSet;
7
8/**
9 * Checks if `value` is classified as a `Set` object.
10 *
11 * @static
12 * @memberOf _
13 * @since 4.3.0
14 * @category Lang
15 * @param {*} value The value to check.
16 * @returns {boolean} Returns `true` if `value` is a set, else `false`.
17 * @example
18 *
19 * _.isSet(new Set);
20 * // => true
21 *
22 * _.isSet(new WeakSet);
23 * // => false
24 */
25var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;
26
27export default isSet;
Note: See TracBrowser for help on using the repository browser.