Rocky_Mountain_Vending/.pnpm-store/v10/files/97/3bff42a0e70cb80ffd4bab9d92fc420fcd322f9ab7e2a4aeab0f207e596112671e7587389fdc1b85c9b31e561c357ebe97f4b795c81b0712122ee10cc32bbb
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
444 B
Text

import copyObject from './_copyObject.js';
import getSymbols from './_getSymbols.js';
/**
* Copies own symbols of `source` to `object`.
*
* @private
* @param {Object} source The object to copy symbols from.
* @param {Object} [object={}] The object to copy symbols to.
* @returns {Object} Returns `object`.
*/
function copySymbols(source, object) {
return copyObject(source, getSymbols(source), object);
}
export default copySymbols;