Rocky_Mountain_Vending/.pnpm-store/v10/files/f0/96cdd765056156581ec0d48b94eb361fb2c7e5c0be38b3b4cdc90629c379fec505a111fd74c069c688883e1d6d023720c91364e3990dac33c8a646a273506d-exec
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

20 lines
349 B
Text
Executable file

'use strict';
const internals = {};
module.exports = internals.flatten = function (array, target) {
const result = target || [];
for (const entry of array) {
if (Array.isArray(entry)) {
internals.flatten(entry, result);
}
else {
result.push(entry);
}
}
return result;
};