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