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.
18 lines
364 B
18 lines
364 B
/** |
|
* Converts `set` to its value-value pairs. |
|
* |
|
* @private |
|
* @param {Object} set The set to convert. |
|
* @returns {Array} Returns the value-value pairs. |
|
*/ |
|
function setToPairs(set) { |
|
var index = -1, |
|
result = Array(set.size); |
|
|
|
set.forEach(function(value) { |
|
result[++index] = [value, value]; |
|
}); |
|
return result; |
|
} |
|
|
|
module.exports = setToPairs;
|
|
|