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.

_baseAssignIn.js 482B

1234567891011121314151617
  1. var copyObject = require('./_copyObject'),
  2. keysIn = require('./keysIn');
  3. /**
  4. * The base implementation of `_.assignIn` without support for multiple sources
  5. * or `customizer` functions.
  6. *
  7. * @private
  8. * @param {Object} object The destination object.
  9. * @param {Object} source The source object.
  10. * @returns {Object} Returns `object`.
  11. */
  12. function baseAssignIn(object, source) {
  13. return object && copyObject(source, keysIn(source), object);
  14. }
  15. module.exports = baseAssignIn;