source: node_modules/ramda/src/internal/_dropLastWhile.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 237 bytes
Line 
1var slice =
2/*#__PURE__*/
3require("../slice.js");
4
5function dropLastWhile(pred, xs) {
6 var idx = xs.length - 1;
7
8 while (idx >= 0 && pred(xs[idx])) {
9 idx -= 1;
10 }
11
12 return slice(0, idx + 1, xs);
13}
14
15module.exports = dropLastWhile;
Note: See TracBrowser for help on using the repository browser.