Skip to main content
Module

x/lodash/_setToArray.js

A modern JavaScript utility library delivering modularity, performance, & extras.
Extremely Popular
Go to Latest
File
/** * Converts `set` to an array of its values. * * @private * @param {Object} set The set to convert. * @returns {Array} Returns the values. */function setToArray(set) { var index = -1, result = Array(set.size);
set.forEach(function(value) { result[++index] = value; }); return result;}
export default setToArray;