JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 144215
  • Score
    100M100P100Q158812F
  • License MIT

Find object values by passing the path as string.

Package Exports

  • find-value

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (find-value) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

find-value PayPal Version Downloads Get help on Codementor

Find object values by passing the path as string.

☁️ Installation

$ npm i --save find-value

📋 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

📝 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.

😋 How to contribute

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

💫 Where is this library used?

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

  • 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.

📜 License

MIT © Ionică Bizău