unbox
Get or set values on an object from an array of keys.
Usage
has(object, pathArray/dotNotation)
var has = ; var myObject = a: b: 1 ; ; // true// OR; // true ; // false
get(object, pathArray/dotNotation)
var get = ; var myObject = a: b: 1 ; ; // 1// OR; // 1
set(object, pathArray/dotNotation, value)
var set = ; ;// OR;
myObject will now be:
a: b: c: 2