Module

x/lodash_es/mod.ts>dropWhile

lodash for deno use
Latest
function dropWhile
import { dropWhile } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/mod.ts";

Creates a slice of array excluding elements dropped from the beginning. Elements are dropped until predicate returns falsey. The predicate is invoked with three arguments: (value, index, array).

Examples

var users = [ { 'user': 'barney', 'active': false }, { 'user': 'fred', 'active': false }, { 'user': 'pebbles', 'active': true } ];

_.dropWhile(users, function(o) { return !o.active; }); // => objects for ['pebbles']

// The _.matches iteratee shorthand. _.dropWhile(users, { 'user': 'barney', 'active': false }); // => objects for ['fred', 'pebbles']

// The _.matchesProperty iteratee shorthand. _.dropWhile(users, ['active', false]); // => objects for ['pebbles']

// The _.property iteratee shorthand. _.dropWhile(users, 'active'); // => objects for ['barney', 'fred', 'pebbles']

Parameters

array

The array to query.

predicate