* 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`.
(source, object)
| 52466 | * @returns {Object} Returns `object`. |
| 52467 | */ |
| 52468 | function copySymbols(source, object) { |
| 52469 | return copyObject(source, getSymbols(source), object); |
| 52470 | } |
| 52471 | |
| 52472 | module.exports = copySymbols; |
| 52473 |
no test coverage detected