File "_copySymbols.js"
Full path: /home/ulinin/public_html/ttt.ulinin.com/node_modules/lodash/_copySymbols.js
File
size: 0.44 KB (446 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
var copyObject = require('./_copyObject'),
getSymbols = require('./_getSymbols');
/**
* 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);
}
module.exports = copySymbols;