Rocky_Mountain_Vending/.pnpm-store/v10/files/c3/554dd4ae187321daf50aa1df6d85ec8f136d00b272b1267c7583f2ff889922b6192393c52f4400443843db47328c8ea54c7377791b973ea520148fa6f1bdf7
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

19 lines
532 B
Text

import arrayMap from './_arrayMap.js';
/**
* The base implementation of `_.values` and `_.valuesIn` which creates an
* array of `object` property values corresponding to the property names
* of `props`.
*
* @private
* @param {Object} object The object to query.
* @param {Array} props The property names to get values for.
* @returns {Object} Returns the array of property values.
*/
function baseValues(object, props) {
return arrayMap(props, function(key) {
return object[key];
});
}
export default baseValues;