UNPKG

react-beautiful-dnd

Version:

Beautiful, accessible drag and drop for lists with React.js

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