Rocky_Mountain_Vending/.pnpm-store/v10/files/0d/47344d44ec26e52ec081c583ea6bc572dac497c85b7da04bb952ab733b6340173f474b5d14210a0cf3c13643c480e87b3244e2e936f82e79e2435467dd8d59
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
278 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;
}
export default getHolder;