Rocky_Mountain_Vending/.pnpm-store/v10/files/52/a060ba3821df5f54a572eee1f4ffe43e992f0f7971714734dd1622e637d5c142a86a4c8f7531e6e7fd2ffb58acdf673c9cd5c4a7084d86f56b53312b0f7c82
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

35 lines
No EOL
1 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.indexFs = exports.splitTwoLevels = void 0;
function splitTwoLevels(functionName) {
const memberParts = functionName.split('.');
if (memberParts.length > 1) {
if (memberParts.length !== 2)
throw Error(`Invalid member function name ${functionName}`);
return memberParts;
}
else {
return [functionName];
}
}
exports.splitTwoLevels = splitTwoLevels;
function indexFs(fs, member) {
if (!member)
throw new Error(JSON.stringify({ member }));
const splitResult = splitTwoLevels(member);
const [functionName1, functionName2] = splitResult;
if (functionName2) {
return {
objectToPatch: fs[functionName1],
functionNameToPatch: functionName2,
};
}
else {
return {
objectToPatch: fs,
functionNameToPatch: functionName1,
};
}
}
exports.indexFs = indexFs;
//# sourceMappingURL=utils.js.map