Rocky_Mountain_Vending/.pnpm-store/v10/files/46/03ec04f04c1dfb63b64cd5b37ecdd2d7747042729289cbcd04fb9c52c1767db2431fa9076ddcb0071759d5a5c258a54cda3f5f35dc565fe8011b76dafc4fdd
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

15 lines
380 B
Text

/**
* Creates a unary function that invokes `func` with its argument transformed.
*
* @private
* @param {Function} func The function to wrap.
* @param {Function} transform The argument transform.
* @returns {Function} Returns the new function.
*/
function overArg(func, transform) {
return function(arg) {
return func(transform(arg));
};
}
export default overArg;