UNPKG
@attio/react-native-bottom-sheet-toolbox
Version:
latest (2.0.2)
2.0.2
2.0.1
2.0.0
1.0.0
0.0.1-experimental1
github.com/attio/react-native-bottom-sheet-toolbox
attio/react-native-bottom-sheet-toolbox
@attio/react-native-bottom-sheet-toolbox
/
src
/
utils
/
get-percentage-value.ts
7 lines
(5 loc)
•
149 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
function
getPercentageValue
(
v: string
) {
"worklet"
if
(v.
at
(-
1
) !==
"%"
)
return
null
return
parseInt
(v.
slice
(
0
, -
1
),
10
) /
100
}