array of list to tree
npm install arraylist-to-tree
arraylist-to-tree
=================
A small library that converts Array of list to tree view
npm install arraylist-to-tree
const tree = require('arraylistTotree');
const list = [{
id: 1,
parentInt: 0
}, {
id: 2,
parentInt: 1
}, {
id: 3,
parentInt: 1
}, {
id: 4,
parentInt: 2
}, {
id: 5,
parentInt: 2
}];
npm test