UNPKG

violet-paginator

Version:

Display, paginate, sort, filter, and update items from the server. violet-paginator is a complete list management library for react/redux applications.

4 lines (3 loc) 108 B
export default function range(low, high) { return Array((high - low) + 1).fill().map((_, i) => i + low) }