unsplay
v1.0.5
Published
Compute a tree from an array of objects with IDs and parent IDs
Downloads
28
Readme
unsplay
Compute a tree from an array of objects with IDs and parent IDs
Installation
$ npm install unsplay
Usage
>> var unsplay = require('unsplay');
>> unsplay([{id: 0}, {id: 1, pid: 0}], 'id', 'pid');
[{
item: {id: 0},
children: [{
item: {id: 1, pid: 0},
children: []
}]
}]