UNPKG

react-native-zoom-toolkit

Version:

Most complete set of pinch to zoom utilites for React Native

13 lines (11 loc) 260 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clamp = void 0; const clamp = (value, min, max) => { 'worklet'; return Math.max(min, Math.min(value, max)); }; exports.clamp = clamp; //# sourceMappingURL=clamp.js.map