UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

9 lines 572 B
import { getDecimalSeparator } from '../../input/utils/formatNumber'; export const truncatedValue = (value, maxDecimals, locale) => { const decimalSeparator = getDecimalSeparator(locale); const numberOfDecimals = (value.split(decimalSeparator)[1] || '').length; const decimalIndex = maxDecimals > 0 ? value.indexOf(decimalSeparator) : value.indexOf(decimalSeparator) - 1; const truncatedValue = value.slice(0, decimalIndex + 1 + maxDecimals); return numberOfDecimals > maxDecimals ? truncatedValue : value; }; //# sourceMappingURL=truncatedValue.js.map