UNPKG

react-beautiful-dnd-next

Version:

Beautiful and accessible drag and drop for lists with React

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