Rocky_Mountain_Vending/.pnpm-store/v10/files/91/7fe2ec2d4bf3d783b2c3ce6bad68e1a63690eca887c6f06fd5c840c416e802fc269fa7d3ebd85b648edf797b46feb310ace7f7da5552e59949ba4ac3069696
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

23 lines
No EOL
769 B
Text

/**
* Create a "Thenable" that does not resolve. This is used to suspend indefinitely when data is not available yet.
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "unresolvedThenable", {
enumerable: true,
get: function() {
return unresolvedThenable;
}
});
const unresolvedThenable = {
then: ()=>{}
};
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
Object.defineProperty(exports.default, '__esModule', { value: true });
Object.assign(exports.default, exports);
module.exports = exports.default;
}
//# sourceMappingURL=unresolved-thenable.js.map