flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
16
VISUALIZACION/node_modules/lodash-es/_copySymbolsIn.js
generated
vendored
Executable file
16
VISUALIZACION/node_modules/lodash-es/_copySymbolsIn.js
generated
vendored
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
import copyObject from './_copyObject.js';
|
||||
import getSymbolsIn from './_getSymbolsIn.js';
|
||||
|
||||
/**
|
||||
* Copies own and inherited 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 copySymbolsIn(source, object) {
|
||||
return copyObject(source, getSymbolsIn(source), object);
|
||||
}
|
||||
|
||||
export default copySymbolsIn;
|
||||
Loading…
Add table
Add a link
Reference in a new issue