Rocky_Mountain_Vending/.pnpm-store/v10/files/22/38bbef2385db71308d6a8442f8984ac747e547cd2f94c0c1ad18ebbfaeaa22702eec1d342fd3a4cb6309a147aeffc55a01d0e7bf534ab909af984ad4dac0e5
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
No EOL
537 B
Text

/**
* Check to see if a value is Thenable.
*
* @param promise the maybe-thenable value
* @returns true if the value is thenable
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "isThenable", {
enumerable: true,
get: function() {
return isThenable;
}
});
function isThenable(promise) {
return promise !== null && typeof promise === 'object' && 'then' in promise && typeof promise.then === 'function';
}
//# sourceMappingURL=is-thenable.js.map