UNPKG

@likashefqet/react-native-image-zoom

Version:

A performant zoomable image written in Reanimated v2+ 🚀

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