_dropLastWhile.js 201 B

12345678910
  1. import slice from "../slice.js";
  2. export default function dropLastWhile(pred, xs) {
  3. var idx = xs.length - 1;
  4. while (idx >= 0 && pred(xs[idx])) {
  5. idx -= 1;
  6. }
  7. return slice(0, idx + 1, xs);
  8. }