Skip to main content
Module

x/ramda/internal/_dropLastWhile.js

:ram: Practical functional Javascript
Very Popular
Go to Latest
File
import slice from '../slice';
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);}