Skip to content

micro-js/get-prop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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