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

16 lines
389 B
Text

import baseGet from './_baseGet.js';
/**
* A specialized version of `baseProperty` which supports deep paths.
*
* @private
* @param {Array|string} path The path of the property to get.
* @returns {Function} Returns the new accessor function.
*/
function basePropertyDeep(path) {
return function(object) {
return baseGet(object, path);
};
}
export default basePropertyDeep;