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.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							449 B
						
					
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							449 B
						
					
					
				'use strict'; | 
						|
 | 
						|
var GetIntrinsic = require('get-intrinsic'); | 
						|
 | 
						|
var has = require('has'); | 
						|
 | 
						|
var $assign = GetIntrinsic('%Object%').assign; | 
						|
 | 
						|
module.exports = function assign(target, source) { | 
						|
	if ($assign) { | 
						|
		return $assign(target, source); | 
						|
	} | 
						|
 | 
						|
	// eslint-disable-next-line no-restricted-syntax | 
						|
	for (var key in source) { | 
						|
		if (has(source, key)) { | 
						|
			// eslint-disable-next-line no-param-reassign | 
						|
			target[key] = source[key]; | 
						|
		} | 
						|
	} | 
						|
	return target; | 
						|
};
 | 
						|
 |