UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

11 lines (9 loc) 235 B
'use client'; function getPrecision(step) { if (!step) return 0; const split = step.toString().split("."); return split.length > 1 ? split[1].length : 0; } export { getPrecision }; //# sourceMappingURL=get-precision.mjs.map