UNPKG

react-native-zoom-toolkit

Version:

Most complete set of pinch to zoom utilites for React Native

5 lines (4 loc) 138 B
export const clamp = (value: number, min: number, max: number): number => { 'worklet'; return Math.max(min, Math.min(value, max)); };