UNPKG
react-native-svg-animation-fix
Version:
latest (12.1.1)
12.1.1
SVG library for react-native
github.com/bardliu/react-native-svg
bardliu/react-native-svg
react-native-svg-animation-fix
/
src
/
lib
/
extract
/
extractOpacity.ts
7 lines
(5 loc)
•
171 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{
NumberProp
}
from
'./types'
;
export
default
function
extractOpacity
(
opacity: NumberProp |
void
) {
const
value = +opacity;
return
isNaN
(value) ?
1
: value; }