nest-object
v1.0.5
Published
Convert {'an.object.like': 'this'} into { an: { object: { like: 'this' } } }
Downloads
11
Readme
nest-object
Convert {'an.object.like': 'this'}
into { an: { object: { like: 'this' } } }
install
npm install nest-object
usage
var nest = require('nest-object');
nest({ 'a.nested.key': 'ok' }) // -> { a: { nested: { key: 'ok' } } }
That's it. Super simple.