-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Need to determine performance drop relatively to basic one by one assignment
var obj = {};
obj.foo = obj.foo || {};
obj.foo.bar = obj.foo.bar || {};
obj.foo.bar.baz = 'quux';and
var accessDeep = require('access-deep');
var obj = {};
var accessor = accessDeep(obj);
accessor.foo.bar.baz = 'quux';