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

33 lines
No EOL
847 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsyncIterableUtil = void 0;
/**
* @internal
*/
class AsyncIterableUtil {
static async *map(iterable, map) {
for await (const value of iterable) {
yield await map(value);
}
}
static async *flatMap(iterable, map) {
for await (const value of iterable) {
yield* map(value);
}
}
static async collect(iterable) {
const result = [];
for await (const value of iterable) {
result.push(value);
}
return result;
}
static async first(iterable) {
for await (const value of iterable) {
return value;
}
return;
}
}
exports.AsyncIterableUtil = AsyncIterableUtil;
//# sourceMappingURL=AsyncIterableUtil.js.map