UNPKG

react-native-zoom-toolkit

Version:

Smoothly zoom any image, video or component you want!

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)); };