UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

10 lines (8 loc) 201 B
import slice from "../slice.js"; export default function dropLastWhile(pred, xs) { var idx = xs.length - 1; while (idx >= 0 && pred(xs[idx])) { idx -= 1; } return slice(0, idx + 1, xs); }