UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

10 lines (7 loc) 393 B
'use client'; 'use strict'; function isMarkFilled({ mark, offset, value, inverted = false }) { return inverted ? typeof offset === "number" ? mark.value <= offset || mark.value >= value : mark.value >= value : typeof offset === "number" ? mark.value >= offset && mark.value <= value : mark.value <= value; } exports.isMarkFilled = isMarkFilled; //# sourceMappingURL=is-mark-filled.cjs.map