UNPKG

reactors

Version:

View components and APIs that work web, mobile and desktop!

15 lines (12 loc) 278 B
/* globals __DEV__ */ import omit from 'lodash/omit'; import Reactors from '../../Core'; const transition = (style) => { if (style.transition) { if (Reactors.isMobile()) { return omit(style, ['transition']); } } return style; }; export default transition;