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.

10 lines (7 loc) 205 B
'use strict'; function wrap(value, min, max) { const range = max - min; return range > 0 ? ((value - min) % range + range) % range + min : 0; } exports.wrap = wrap; //# sourceMappingURL=wrap.cjs.map