New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

find-value

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

find-value

Find object values by passing the path as string.

  • 1.0.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
111K
increased by3.05%
Maintainers
1
Weekly downloads
 
Created
Source

find-value

Patreon PayPal AMA Version Downloads Get help on Codementor

Find object values by passing the path as string.

:cloud: Installation

$ npm i --save find-value

:clipboard: Example

const findValue = require("find-value");

// Some random object :)
const obj = {
    location: {
        planet: "Mars"
      , town: "Somewhere"
    }
  , names: [
        { first: "Alice", age: 19 }
      , { first: "Bob", age: 20 }
    ]
};

console.log(findValue(obj, "location.planet"));
// => "Mars"

console.log(findValue(obj, "names"));
// => [ { first: "Alice", age: 19 }, { first: "Bob", age: 20 } ]

console.log(findValue(obj, "names.0.first"));
// => "Alice"

console.log(findValue(obj, "names.1.age"));
// => 20

console.log(findValue(obj, "something.that.does.not.exist"));
// => undefined

:memo: Documentation

findValue(obj, path)

Finds the value at given path in the specified object.

Params
  • Object obj: The input object.
  • String path: The path to the value you want to find.
Return
  • Anything The path value.

:yum: How to contribute

Have an idea? Found a bug? See how to contribute.

:moneybag: Donations

Another way to support the development of my open-source modules is to set up a recurring donation, via Patreon. :rocket:

PayPal donations are appreciated too! Each dollar helps.

Thanks! :heart:

:dizzy: Where is this library used?

If you are using this library in one of your projects, add it in this list. :sparkles:

  • arr-obj—Convert arrays into objects by using unique fields.
  • flow-api (by jillix)—The flow api library and CLI app.
  • lien—Another lightweight NodeJS framework. Lien is the link between request and response objects.
  • np-init—Easily start a npm package from scratch.
  • packy—Set default fields in your package.json files.
  • ship-release—Publish new versions on GitHub and npm with ease.

:scroll: License

MIT © Ionică Bizău

Keywords

FAQs

Package last updated on 11 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc