dot-access

1.0.0 • Public • Published

dot-access

Access object properties using dot notation.

var dotAccess = require('dot-access');
 
var user = { 
  fullname: { 
    first: 'Joe', 
    last: 'M' 
  } 
};
 
// get
dotAccess.get(user, 'fullname.first'); // 'Joe'
 
// or set
dotAccess.set(user, 'fullname.last', 'T'); // 'T'

Installation

Install with component(1):

$ component install nthtran/dot-access

API

License

MIT

Dependents (11)

Package Sidebar

Install

npm i dot-access

Weekly Downloads

5,776

Version

1.0.0

License

none

Last publish

Collaborators

  • nthtran