Rocky_Mountain_Vending/.pnpm-store/v10/files/a1/9588183bc004fadcc93c1d3b71fd9d7043b379ecc0a0517649cbb4508a79f55a4b1d25666cabbdf26f4b28f878489a19903742e64f6a89791925f611a954ce
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

18 lines
343 B
Text

/**
* 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;