UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI 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;