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.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							470 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							470 B
						
					
					
				var copyObject = require('./_copyObject'),
 | 
						|
    keys = require('./keys');
 | 
						|
 | 
						|
/**
 | 
						|
 * The base implementation of `_.assign` without support for multiple sources
 | 
						|
 * or `customizer` functions.
 | 
						|
 *
 | 
						|
 * @private
 | 
						|
 * @param {Object} object The destination object.
 | 
						|
 * @param {Object} source The source object.
 | 
						|
 * @returns {Object} Returns `object`.
 | 
						|
 */
 | 
						|
function baseAssign(object, source) {
 | 
						|
  return object && copyObject(source, keys(source), object);
 | 
						|
}
 | 
						|
 | 
						|
module.exports = baseAssign;
 |