source: imaps-frontend/node_modules/lodash-es/_copySymbolsIn.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 468 bytes
Line 
1import copyObject from './_copyObject.js';
2import getSymbolsIn from './_getSymbolsIn.js';
3
4/**
5 * Copies own and inherited symbols of `source` to `object`.
6 *
7 * @private
8 * @param {Object} source The object to copy symbols from.
9 * @param {Object} [object={}] The object to copy symbols to.
10 * @returns {Object} Returns `object`.
11 */
12function copySymbolsIn(source, object) {
13 return copyObject(source, getSymbolsIn(source), object);
14}
15
16export default copySymbolsIn;
Note: See TracBrowser for help on using the repository browser.