UNPKG
react-native-tilt
Version:
latest (0.0.1)
0.0.1
React Native Tilt Effect
github.com/psicotropicos/react-native-tilt
psicotropicos/react-native-tilt
react-native-tilt
/
utils
/
Round.js
10 lines
(7 loc)
•
125 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Round */
export
default
function
Round
(value)
{
if
(!value)
return
0
;
return
Math.
floor
((value *
100
)) +
1
; }