Rocky_Mountain_Vending/.pnpm-store/v10/files/22/5a1e7515c05f66b5ed05145216051ea1b6d23f41816b606e5657130e46448d7bfb7e1e137771c4ff9f8e47ffd8bf513dcd3042ab38525c7d51b7cdd9184db0
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

13 lines
280 B
Text

/**
* Gets the argument placeholder value for `func`.
*
* @private
* @param {Function} func The function to inspect.
* @returns {*} Returns the placeholder value.
*/
function getHolder(func) {
var object = func;
return object.placeholder;
}
module.exports = getHolder;