1.1.1 • Published 8 years ago

@f/get-prop v1.1.1

Weekly downloads
271
License
MIT
Repository
github
Last release
8 years ago

get-prop

Build status Git tag NPM version Code style

Get nested property from object.

Installation

$ npm install @f/get-prop

Usage

var getProp = require('@f/get-prop')

var obj = {foo: {bar: 'baz'}}
getProp('foo.bar', obj) // => 'baz'

API

getProp(path, obj)

  • path - array or dot seperated string specifying path
  • obj - obj to retrieve property from

Returns: property

License

MIT