Rocky_Mountain_Vending/.pnpm-store/v10/files/8b/b121d58f094829f1f0bacb55aab113efc2e0aa545563081c63e3f35a1f16a30d46d7a8b0dc3b856cf23c709ae8de47eeab61d0aaab7f913c93e26d2aaf3b58
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

14 lines
330 B
Text

/**
* The base implementation of `_.unary` without support for storing metadata.
*
* @private
* @param {Function} func The function to cap arguments for.
* @returns {Function} Returns the new capped function.
*/
function baseUnary(func) {
return function(value) {
return func(value);
};
}
export default baseUnary;