Sha256: bc2c0518d3708d754814b5657c90bbaa0d1494d06f32d21af0af01853f06a045
Contents?: true
Size: 470 Bytes
Versions: 270
Compression:
Stored size: 470 Bytes
Contents
var copyObject = require('./_copyObject'), getSymbolsIn = require('./_getSymbolsIn'); /** * 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); } module.exports = copySymbolsIn;
Version data entries
270 entries across 269 versions & 28 rubygems