mirror of https://github.com/lukechilds/node.git
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.
16 lines
349 B
16 lines
349 B
9 years ago
|
var Set = require('./_Set'),
|
||
|
noop = require('./noop');
|
||
|
|
||
|
/**
|
||
|
* Creates a set of `values`.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {Array} values The values to add to the set.
|
||
|
* @returns {Object} Returns the new set.
|
||
|
*/
|
||
|
var createSet = !(Set && new Set([1, 2]).size === 2) ? noop : function(values) {
|
||
|
return new Set(values);
|
||
|
};
|
||
|
|
||
|
module.exports = createSet;
|