ecency-mobile/src/utils/number.js
2020-03-24 12:52:23 +02:00

12 lines
189 B
JavaScript

export const countDecimals = (value) => {
if (!value) {
return 0;
}
if (Math.floor(value) === value) {
return 0;
}
return value.toString().split('.')[1].length || 0;
};