Module

x/lodash_es/mod.ts>findLastKey

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

This method is like _.findKey except that it iterates over elements of a collection in the opposite order.

Examples

var users = { 'barney': { 'age': 36, 'active': true }, 'fred': { 'age': 40, 'active': false }, 'pebbles': { 'age': 1, 'active': true } };

_.findLastKey(users, function(o) { return o.age < 40; }); // => returns 'pebbles' assuming _.findKey returns 'barney'

// The _.matches iteratee shorthand. _.findLastKey(users, { 'age': 36, 'active': true }); // => 'barney'

// The _.matchesProperty iteratee shorthand. _.findLastKey(users, ['active', false]); // => 'fred'

// The _.property iteratee shorthand. _.findLastKey(users, 'active'); // => 'pebbles'

Parameters

object

The object to inspect.

predicate