UNPKG

react-animated-counter

Version:
7 lines 374 B
// Creates array of digits to vertically scroll through var formatForDisplay = function (number, includeDecimals, decimalPrecision) { var decimalCount = includeDecimals ? decimalPrecision : 0; return parseFloat("".concat(Math.max(number, 0))).toFixed(decimalCount).split('').reverse(); }; export default formatForDisplay; //# sourceMappingURL=formatForDisplay.js.map