Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/f022308c732750071c25b2c1a6f98b7e2eef89a385bf6304337175e1af29a9fc5db610ea180568b1f637aa943b60bcb9bb2c825a64b102b0f9d3efc4615346
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

11 lines
No EOL
275 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = reverse;
function reverse(values) {
if (typeof values[Symbol.iterator] !== "function") throw new TypeError("values is not iterable");
return Array.from(values).reverse();
}