UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

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