Dashboard
PHP:
8.4.20
OS:
Linux
User:
sinnett_country
/
/
usr
/
share
/
nodejs
/
lodash
📤 Upload
📝 New File
📁 New Folder
Close
Editing: _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; } module.exports = setToArray;
Save
Cancel