- 
                Notifications
    
You must be signed in to change notification settings  - Fork 5
 
dropWhile
        Subhajit Sahu edited this page May 3, 2023 
        ·
        16 revisions
      
    Discard values from left, while a test passes.
Alternatives: drop, dropRight, dropWhile, dropWhileRight.
Similar: take, drop.
function dropWhile(x, ft)
// x:  an array
// ft: test function (v, i, x)const xarray = require('extra-array');
var x = [1, 2, 3, 4, 5];
xarray.dropWhile(x, v => v < 3);
// → [ 3, 4, 5 ]
xarray.dropWhile(x, v => v < 4);
// → [ 4, 5 ]