UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

8 lines (6 loc) 366 B
'use client'; 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; } export { isMarkFilled }; //# sourceMappingURL=is-mark-filled.mjs.map