UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

7 lines (6 loc) 275 B
'use strict'; export const processOpacity = opacity => { const value = typeof opacity === 'string' && opacity.trim().endsWith('%') ? +opacity.slice(0, -1) / 100 : +opacity; return isNaN(value) || value > 1 ? 1 : Math.max(value, 0); }; //# sourceMappingURL=opacity.js.map