get-nested-prop

1.0.0 • Public • Published

Table of Contents

A one-liner to get a nested prop using dot-notation with a optional default value as fallback



Built with ❤︎ by Tiaan and contributors

Table of Contents

Table of Contents
  • Install
  • Usage
  • Contribute
  • License
  • Install

    $ npm install --save get-nested-prop
    # OR 
    $ yarn add get-nested-prop

    Usage

    const getNestedProp = require('get-nested-prop')
     
    const obj = {
      foo: {
        bar: {
          baz: 5
        }
      }
    }
     
    console.log(getNestedProp(obj, 'foo.bar.baz')) // 5
    console.log(getNestedProp(obj, 'foo.bar.baz.boo', 5))  // 5

    Contribute

    Contributions are welcome. Please open up an issue or create PR if you would like to help out.

    Note: If editing the README, please conform to the standard-readme specification.

    License

    Licensed under the MIT License.

    Package Sidebar

    Install

    npm i get-nested-prop

    Weekly Downloads

    0

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • tiaanduplessis