dotpathlookup
A small module that takes a dotpath string and returns the value of that path from the object, written as part of a tutorial on Javascript.
var parse = ;var my_function = ;var obj = check:it:out:"woop woop"; console; // === "woop woop"
API
parse = require('dotpathlookup') -> function(str)
returns a function that accepts a string to split it into a manageable array.
parse(str) -> function(obj)
returns the value of the path, which should only be a string.
LICENSE
MIT