source: imaps-frontend/node_modules/lodash/_createSet.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 501 bytes
Line 
1var Set = require('./_Set'),
2 noop = require('./noop'),
3 setToArray = require('./_setToArray');
4
5/** Used as references for various `Number` constants. */
6var INFINITY = 1 / 0;
7
8/**
9 * Creates a set object of `values`.
10 *
11 * @private
12 * @param {Array} values The values to add to the set.
13 * @returns {Object} Returns the new set.
14 */
15var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) {
16 return new Set(values);
17};
18
19module.exports = createSet;
Note: See TracBrowser for help on using the repository browser.