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.
		
		
		
		
		
			
		
			
				
					10 lines
				
				714 B
			
		
		
			
		
	
	
					10 lines
				
				714 B
			| 
											3 years ago
										 | import bindActionCreators from '../utils/bindActionCreators'; | ||
|  | import { wrapMapToPropsConstant, wrapMapToPropsFunc } from './wrapMapToProps'; | ||
|  | import { createInvalidArgFactory } from './invalidArgFactory'; | ||
|  | export function mapDispatchToPropsFactory(mapDispatchToProps) { | ||
|  |   return mapDispatchToProps && typeof mapDispatchToProps === 'object' ? wrapMapToPropsConstant(dispatch => // @ts-ignore
 | ||
|  |   bindActionCreators(mapDispatchToProps, dispatch)) : !mapDispatchToProps ? wrapMapToPropsConstant(dispatch => ({ | ||
|  |     dispatch | ||
|  |   })) : typeof mapDispatchToProps === 'function' ? // @ts-ignore
 | ||
|  |   wrapMapToPropsFunc(mapDispatchToProps, 'mapDispatchToProps') : createInvalidArgFactory(mapDispatchToProps, 'mapDispatchToProps'); | ||
|  | } |