UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 224 B
export default setToArray; /** * Converts `set` to an array of its values. * * @private * @param {Object} set The set to convert. * @returns {Array} Returns the values. */ declare function setToArray(set: any): any[];