UNPKG

@shopify/flash-list

Version:

FlashList is a more performant FlatList replacement

5 lines 211 B
export function roundToDecimalPlaces(value, decimalPlaces) { const multiplier = 10 ** decimalPlaces; return Math.round(value * multiplier) / multiplier; } //# sourceMappingURL=roundToDecimalPlaces.js.map