UNPKG
@huunguyen312/flash-list
Version:
latest (1.4.3)
1.4.3
FlashList is a more performant FlatList replacement
shopify.github.io/flash-list/
Shopify/flash-list
@huunguyen312/flash-list
/
src
/
benchmark
/
roundToDecimalPlaces.ts
5 lines
(4 loc)
•
175 B
text/typescript
View Raw
1
2
3
4
5
export
function
roundToDecimalPlaces
(
value
:
number
,
decimalPlaces
:
number
) {
const
multiplier =
10
** decimalPlaces;
return
Math
.
round
(value * multiplier) / multiplier; }