UNPKG

@mui/x-internals

Version:

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

3 lines 119 B
export function roundToDecimalPlaces(value, decimals) { return Math.round(value * 10 ** decimals) / 10 ** decimals; }