npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

get-last-value

v1.0.2

Published

Lookup an object recursively for given property and get it's value.

Downloads

16

Readme

get-last-value npmjs.com The MIT License

Lookup an object recursively for given property and get it's value.

code climate standard code style travis build status coverage status dependency status

Install

npm i get-last-value --save

Usage

For more use-cases see the tests

var getLastValue = require('get-last-value')

getLastValue({foo: 'bar', baz: 'qux'}, 'foo') //=> 'bar'
getLastValue({foo: 'bar', baz: 'qux'}, 'baz') //=> 'qux'

var obj = {
  a: 111,
  e: 555,
  u: undefined,
  b: {
    w: {
      f: false,
      d: 'ddd'
    },
    e: 'eee',
    c: {
      a: 222,
      e: null
    }
  },
  d: {
    a: 333
  }
}

getLastValue(obj, 'a') //=> 333
getLastValue(obj, 'c') //=> { a: 222, e: null }
getLastValue(obj, 'd') //=> { a: 333 }
getLastValue(obj, 'f') //=> false
getLastValue(obj, 'e') //=> null
getLastValue(obj, 'u') //=> undefined
getLastValue(obj, 'w') //=> { f: false, d: 'ddd' }
getLastValue(obj, 'foo') //=> undefined

Related

  • assign-value: Extend a value or deeply nested property of an object using dot notation
  • upsert-value: Update or set nested values and any intermediaries with dot notation
  • unset-value: Delete nested properties from an object using dot notation ('a.b.c') paths.
  • get-value: Use property paths (a.b.c) to get a nested value from an object.
  • set-value: Create nested values and any intermediaries using dot notation ('a.b.c') paths.
  • put-value: Update only existing values from an object, usin dot notation ('a.b.c') paths.
  • del-value: Delete deeply nested value from an object using dot notation ('a.b.c') paths.
  • omit-value: Omit properties from an object or deeply nested property using dot notation
  • object.omit: Return a copy of an object excluding the given key, or array of keys. Also… more
  • has-value: Returns true if a value exists, false if empty. Works with dot notation ('a.b.c') paths.
  • has-own-deep: Returns true if an object has an own, nested property using dot notation
  • is-extendable: Returns true if a value is any of the object types: array, regexp, plain object,… more
  • is-real-object: Returns true if a value is any type of object, but not an array. Browserify-ready.
  • object-visit: Call the given method on each value in the given object.

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.

Charlike Make Reagent new message to charlike freenode #charlike

tunnckocore.tk keybase tunnckocore tunnckoCore npm tunnckoCore twitter tunnckoCore github