mirror of
				https://github.com/NativeScript/NativeScript.git
				synced 2025-11-04 12:58:38 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			393 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			393 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
// This method iterates all the keys in the source exports object and copies them to the destination exports one.
 | 
						|
// Note: the method will not check for naming collisions and will override any already existing entries in the destination exports.
 | 
						|
export function merge(sourceExports: any, destExports: any) {
 | 
						|
	for (const key in sourceExports) {
 | 
						|
		destExports[key] = sourceExports[key];
 | 
						|
	}
 | 
						|
}
 |