UNPKG

@mui/x-internals

Version:

Utility functions for the MUI X packages (internal use only).

9 lines (8 loc) 245 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.roundToDecimalPlaces = roundToDecimalPlaces; function roundToDecimalPlaces(value, decimals) { return Math.round(value * 10 ** decimals) / 10 ** decimals; }