UNPKG

310 BJavaScriptView Raw
1export const reflow = node => node.scrollTop;
2export function getTransitionProps(props, options) {
3 const {
4 timeout,
5 style = {}
6 } = props;
7 return {
8 duration: style.transitionDuration || typeof timeout === 'number' ? timeout : timeout[options.mode] || 0,
9 delay: style.transitionDelay
10 };
11}
\No newline at end of file