Rocky_Mountain_Vending/.pnpm-store/v10/files/0a/498e669bd9662829bc78bf408b8b39ccf4ea007fff72b65f20fe57eed7570b20bcc347340a7d4136bfcea99c97ee90584f8d4780a9f356728ebf1fbf39f843
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
362 B
Text

/**
* Converts `set` to its value-value pairs.
*
* @private
* @param {Object} set The set to convert.
* @returns {Array} Returns the value-value pairs.
*/
function setToPairs(set) {
var index = -1,
result = Array(set.size);
set.forEach(function(value) {
result[++index] = [value, value];
});
return result;
}
export default setToPairs;