Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_copySymbols.js 446B

12345678910111213141516
  1. var copyObject = require('./_copyObject'),
  2. getSymbols = require('./_getSymbols');
  3. /**
  4. * Copies own symbols of `source` to `object`.
  5. *
  6. * @private
  7. * @param {Object} source The object to copy symbols from.
  8. * @param {Object} [object={}] The object to copy symbols to.
  9. * @returns {Object} Returns `object`.
  10. */
  11. function copySymbols(source, object) {
  12. return copyObject(source, getSymbols(source), object);
  13. }
  14. module.exports = copySymbols;