@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
12 lines (9 loc) • 305 B
JavaScript
;
exports.__esModule = true;
exports.countDecimals = void 0;
// eslint-disable-next-line import/prefer-default-export
var countDecimals = function countDecimals(x) {
if (Math.floor(x) === x) return 0;
return String(x).split('.')[1].length || 0;
};
exports.countDecimals = countDecimals;