12 lines
		
	
	
		
			305 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			305 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
export const reflow = node => node.scrollTop;
 | 
						|
 | 
						|
export function getTransitionProps(props, options) {
 | 
						|
  const { timeout, style = {} } = props;
 | 
						|
 | 
						|
  return {
 | 
						|
    duration:
 | 
						|
      style.transitionDuration || typeof timeout === 'number' ? timeout : timeout[options.mode],
 | 
						|
    delay: style.transitionDelay,
 | 
						|
  };
 | 
						|
}
 |