UNPKG

@liveblocks/react-ui

Version:

A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.

8 lines (6 loc) 185 B
function wrap(value, min, max) { const range = max - min; return range > 0 ? ((value - min) % range + range) % range + min : 0; } export { wrap }; //# sourceMappingURL=wrap.js.map