UNPKG

zarm

Version:

基于 React 的移动端UI库

10 lines (8 loc) 232 B
export default function getPrecision(step) { var stepString = step.toString(); var precision = 0; if (stepString.indexOf('.') >= 0) { precision = stepString.length - stepString.indexOf('.') - 1; } return precision; }