ua-dotpathlookup

0.0.0 • Public • Published

ua-dotpathlookup

A simple function to convert a dot notation string to its corresponding value on an object, written as part of a technical evaluation.

var dotpath = require('ua-dotpathlookup')
var find = dotpath('part.key.attribute')

var found = find({part: {key: {attribute: "woop woop"} }})
console.log(found) // outputs "woop woop"

var not_found = find({}) || find() || find(null)
console.log(not_found) // outputs undefined

LICENSE

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i ua-dotpathlookup

Weekly Downloads

3

Version

0.0.0

License

MIT

Last publish

Collaborators

  • ctrombley