@shopify/flash-list
Version:
FlashList is a more performant FlatList replacement
8 lines • 340 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.roundToDecimalPlaces = roundToDecimalPlaces;
function roundToDecimalPlaces(value, decimalPlaces) {
var multiplier = Math.pow(10, decimalPlaces);
return Math.round(value * multiplier) / multiplier;
}
//# sourceMappingURL=roundToDecimalPlaces.js.map