UNPKG

react-beautiful-dnd

Version:

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

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 => value <= upperBound && value >= lowerBound;