UNPKG

@hello-pangea/dnd

Version:

Beautiful and accessible drag and drop for lists with React

9 lines (7 loc) 216 B
// is a value between two other values export default ( lowerBound: number, upperBound: number, ): ((a: number) => boolean) => (value: number): boolean => lowerBound <= value && value <= upperBound;