UNPKG

react-native-easy-calendar

Version:

Customizable, easy-to-use, performant calendar components for React Native

6 lines (4 loc) 129 B
const clamp = (val: number, min: number, max: number) => { return Math.min(Math.max(min, val), max); }; export default clamp;