DIR: /proc/1991111/root/usr/share/node_modules/lodash-es/ |
Current File : //proc/1991111/root/usr/share/node_modules/lodash-es/_setToArray.js |
/** Detect free variable `globalThis` */ const freeGlobalThis = typeof globalThis == 'object' && globalThis !== null && globalThis.Object == Object && globalThis; /** * 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; |